:root {
  --ink: #11151c;
  --charcoal: #0b0f14;
  --charcoal-deep: #06090d;
  --limestone: #f4f7fa;
  --limestone-bright: #ffffff;
  --sage: #111923;
  --sage-soft: #647387;
  --stone: #78bcff;
  --muted-dark: #687382;
  --muted-light: #b8c1cc;
  --rule-dark: rgba(16, 24, 35, 0.16);
  --rule-light: rgba(255, 255, 255, 0.22);
  --glass-dark: rgba(8, 13, 20, 0.43);
  --glass-dark-strong: rgba(8, 13, 20, 0.68);
  --glass-light: rgba(255, 255, 255, 0.62);
  --glass-edge: rgba(255, 255, 255, 0.34);
  --glass-edge-dark: rgba(1, 5, 9, 0.72);
  --glass-blue: rgba(120, 188, 255, 0.78);
  --serif: "Iowan Old Style", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(100% - 144px, 1600px);
  --header-height: 118px;
  --hero-rail: clamp(136px, 16.6vh, 170px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--charcoal);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--limestone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  color: #07101a;
  background: #9fd2ff;
}

:focus-visible {
  outline: 2px solid #79bdff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--charcoal);
  background: var(--limestone-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

#work,
#services,
#process,
#about {
  scroll-margin-top: 88px;
}

.site-header {
  --glass-x: 78%;
  --glass-y: 0%;
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 36px), 1460px);
  height: 82px;
  padding: 12px 14px 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  color: var(--limestone-bright);
  background:
    radial-gradient(120% 180% at 12% -80%, rgba(255, 255, 255, 0.24), transparent 54%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.018) 40%, rgba(98, 176, 255, 0.075)),
    var(--glass-dark);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.3),
    0 7px 24px rgba(6, 23, 39, 0.16),
    inset 1.25px 1.25px 0 rgba(255, 255, 255, 0.5),
    inset -1.25px -1.25px 0 var(--glass-edge-dark),
    inset 0 -8px 18px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(38px) saturate(160%) contrast(108%) brightness(90%);
  -webkit-backdrop-filter: blur(38px) saturate(160%) contrast(108%) brightness(90%);
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  transform: translateX(-50%);
  isolation: isolate;
  overflow: hidden;
  transition: top 400ms var(--ease), height 400ms var(--ease), padding 400ms var(--ease), background-color 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(260px 150px at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.34), rgba(176, 218, 255, 0.1) 36%, transparent 72%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.11), transparent 28%, transparent 70%, rgba(132, 199, 255, 0.07));
  mix-blend-mode: screen;
  opacity: 0.82;
  transition: opacity 300ms ease;
}

.site-header::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 1.25px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.34) 16%, rgba(255, 255, 255, 0.07) 37%, rgba(0, 4, 8, 0.75) 67%, rgba(152, 211, 255, 0.56) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.88;
}

.site-header.is-scrolled {
  top: 10px;
  height: 72px;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    radial-gradient(120% 180% at 12% -80%, rgba(255, 255, 255, 0.2), transparent 54%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018) 45%, rgba(96, 170, 255, 0.055)),
    var(--glass-dark-strong);
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.36),
    inset 1.25px 1.25px 0 rgba(255, 255, 255, 0.42),
    inset -1.25px -1.25px 0 rgba(0, 3, 7, 0.82),
    inset 0 -8px 18px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled::after {
  opacity: 0.78;
}

@media (min-width: 901px) {
  .site-header.is-scrolled {
    padding-block: 6px;
  }
}

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

.brand {
  position: relative;
  display: inline-flex;
  width: max-content;
  padding-right: 28px;
  flex-direction: column;
  line-height: 1;
}

.brand::after {
  position: absolute;
  top: 1px;
  right: 0;
  width: 1px;
  height: 56px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(120, 188, 255, 0.16));
  transition: height 320ms var(--ease);
}

.brand__name {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.045em;
  transition: font-size 320ms var(--ease);
}

.brand__descriptor {
  margin-top: 9px;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  transition: margin-top 320ms var(--ease), font-size 320ms var(--ease);
}

.site-header.is-scrolled .brand__name {
  font-size: 34px;
}

.site-header.is-scrolled .brand__descriptor {
  margin-top: 4px;
  font-size: 8px;
}

.site-header.is-scrolled .brand::after {
  height: 40px;
}

.desktop-nav {
  display: flex;
  gap: clamp(30px, 4vw, 68px);
  margin-left: 56px;
  align-items: center;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: 15px;
}

.desktop-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease;
}

.desktop-nav a:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
}

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

.arrow-button {
  --glass-x: 72%;
  --glass-y: 0%;
  position: relative;
  display: inline-flex;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: inherit;
  background:
    radial-gradient(130% 180% at 10% -90%, rgba(255, 255, 255, 0.3), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.018)),
    rgba(8, 13, 20, 0.18);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.46),
    inset -1px -1px 0 rgba(0, 4, 8, 0.72),
    0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(26px) saturate(155%) contrast(106%) brightness(92%);
  -webkit-backdrop-filter: blur(26px) saturate(155%) contrast(106%) brightness(92%);
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, transform 300ms var(--ease), box-shadow 300ms ease;
  isolation: isolate;
  overflow: hidden;
}

.arrow-button::before,
.text-link__arrow::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(120px 78px at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.42), rgba(165, 215, 255, 0.1) 44%, transparent 74%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.68;
  transition: opacity 240ms ease;
}

.arrow-button::after,
.text-link__arrow::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.16) 36%, rgba(0, 4, 8, 0.66) 70%, rgba(143, 207, 255, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.76;
}

.arrow-button > *,
.text-link__arrow > * {
  position: relative;
  z-index: 1;
}

.arrow-button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.56),
    inset -1px -1px 0 rgba(0, 4, 8, 0.7),
    0 18px 38px rgba(0, 0, 0, 0.18);
}

.arrow-button:hover::before,
.text-link__arrow:hover::before {
  opacity: 1;
}

.arrow-button:active,
.text-link:active .text-link__arrow {
  transform: translateY(1px) scale(0.972);
  transition-duration: 110ms;
}

.arrow-button svg,
.text-link svg,
.hero__next svg,
.service-index svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
  transition: transform 320ms var(--ease);
}

.arrow-button:hover svg,
.text-link:hover svg,
.hero__next:hover svg,
.service-index button:hover svg {
  transform: translateX(5px);
}

.header-cta {
  min-width: 230px;
  border-color: rgba(120, 188, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(120, 188, 255, 0.09)),
    rgba(9, 16, 24, 0.3);
}

.header-cta:hover,
.arrow-button--light:hover {
  color: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.88);
}

.arrow-button--solid {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.9);
}

.arrow-button--solid:hover {
  color: var(--limestone-bright);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--limestone-bright);
  background: var(--charcoal-deep);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0 0 var(--hero-rail);
  display: block;
}

.hero__media::after,
.hero__media img {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--hero-y, 0px), 0) scale(1.045);
  animation: heroIn 1.6s var(--ease) both;
  will-change: transform;
}

.hero__media::after {
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.97) 0%, rgba(6, 11, 17, 0.86) 27%, rgba(8, 14, 22, 0.35) 49%, rgba(8, 14, 22, 0) 72%),
    linear-gradient(0deg, rgba(5, 9, 14, 0.58) 0%, transparent 32%);
}

@keyframes heroIn {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: translate3d(0, var(--hero-y, 0px), 0) scale(1.045); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--hero-rail));
  width: min(680px, 46vw);
  margin-left: 5.4vw;
  padding: clamp(168px, 21vh, 230px) 0 46px;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(68px, 7.5vw, 120px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero__content > p {
  max-width: 430px;
  margin-top: 30px;
  color: #d4dce6;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 350;
  line-height: 1.48;
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 28px;
  color: inherit;
  background: none;
  cursor: pointer;
  align-items: center;
  gap: 42px;
  font-size: 17px;
}

.text-link > span:first-child {
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
}

.text-link__arrow {
  --glass-x: 72%;
  --glass-y: 0%;
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035)),
    rgba(8, 13, 20, 0.24);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.48), inset -1px -1px 0 rgba(0, 4, 8, 0.72), 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px) saturate(155%) contrast(106%);
  -webkit-backdrop-filter: blur(24px) saturate(155%) contrast(106%);
  isolation: isolate;
  overflow: hidden;
  place-items: center;
}

.hero__location {
  display: flex;
  width: 430px;
  max-width: 100%;
  margin-top: auto;
  padding-top: 36px;
  border-top: 1px solid var(--rule-light);
  color: #d7e0ea;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero__location svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.hero__next {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: var(--hero-rail);
  padding: 0 4.5vw;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 250, 0.88)),
    var(--limestone);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
  grid-template-columns: 48px minmax(340px, 0.9fr) minmax(250px, 0.7fr) auto;
  align-items: center;
  gap: 28px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.02;
}

.hero__next-index {
  color: var(--muted-dark);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.hero__next-image {
  display: block;
  height: calc(var(--hero-rail) - 24px);
  overflow: hidden;
}

.hero__next-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform 800ms var(--ease);
}

.hero__next:hover .hero__next-image img {
  transform: scale(1.025);
}

.services {
  overflow: hidden;
  color: var(--limestone-bright);
  background: var(--charcoal);
}

.services__top {
  display: grid;
  padding-top: clamp(110px, 10vw, 170px);
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  align-items: stretch;
  gap: clamp(54px, 7vw, 120px);
}

.services__copy {
  display: flex;
  padding-bottom: 20px;
  flex-direction: column;
}

.services h2,
.work h2,
.process h2,
.coverage h2,
.inquiry h2,
.project-dialog h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.services h2 {
  max-width: 560px;
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.98;
}

.services__copy > p {
  max-width: 510px;
  margin-top: 30px;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.6;
}

.service-index {
  margin-top: auto;
  padding-top: 70px;
}

.service-index button {
  display: grid;
  width: 100%;
  min-height: 94px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-light);
  color: var(--limestone-bright);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  text-align: left;
  transition: color 250ms ease, border-color 250ms ease;
}

.service-index button:first-child {
  border-top: 1px solid var(--rule-light);
  color: var(--limestone-bright);
  background: transparent;
  box-shadow: none;
}

.service-index button:hover {
  color: #cfe8ff;
  background: transparent;
}

.service-row__copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-row__copy strong {
  display: flex;
  font-size: 16px;
  font-weight: 450;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.service-row__badge {
  display: inline-flex;
  color: var(--stone);
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-row__badge::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  box-shadow: 0 0 12px rgba(120, 188, 255, 0.72);
}

.service-row__copy small {
  max-width: 440px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 350;
  line-height: 1.45;
}

.services__media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.services__media picture,
.services__media img {
  width: 100%;
  height: 100%;
}

.services__media img {
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.services__media:hover img {
  transform: scale(1.025);
}

.services__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 18px 20px;
  color: #e1e8f0;
  background: linear-gradient(0deg, rgba(6, 10, 16, 0.9), transparent);
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work {
  display: grid;
  padding-top: 112px;
  padding-bottom: 152px;
  grid-template-columns: 280px 1fr;
  gap: 44px;
}

.work__intro {
  padding-top: 52px;
  border-top: 1px solid var(--rule-light);
}

.work__intro h2 {
  font-size: 43px;
  line-height: 1.02;
}

.work__intro > p {
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}

.text-link--compact {
  margin-top: 34px;
  padding: 0;
  gap: 22px;
  font-size: 13px;
}

.text-link--compact svg {
  width: 19px;
  height: 19px;
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 66px 22px;
}

.project {
  position: relative;
  min-width: 0;
  grid-column: span 4;
}

.project--landscape-lead {
  grid-column: span 5;
}

.project--outdoor-lead {
  grid-column: span 7;
}

.project--whole-home {
  grid-column: 1 / -1;
}

.project__media {
  display: block;
  aspect-ratio: 0.83;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #141b23;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.project--landscape-lead .project__media {
  aspect-ratio: 1.08 / 1;
}

.project--outdoor-lead .project__media {
  aspect-ratio: 1.52 / 1;
}

.project--whole-home .project__media {
  aspect-ratio: 2.15 / 1;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.project:hover .project__media img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.project__meta {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: block;
  width: max-content;
  max-width: calc(100% - 28px);
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 13px;
  color: var(--limestone-bright);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025)),
    rgba(7, 12, 18, 0.57);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.48),
    inset -1px -1px 0 rgba(0, 4, 8, 0.76),
    0 13px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(26px) saturate(150%) contrast(106%) brightness(91%);
  -webkit-backdrop-filter: blur(26px) saturate(150%) contrast(106%) brightness(91%);
}

.project h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project p {
  margin-top: 6px;
  color: var(--muted-light);
  font-size: 13px;
}

.project--focus-right .project__media img {
  object-position: 72% center;
}

.trust-band {
  display: grid;
  padding: 112px 0 152px;
  border-top: 1px solid var(--rule-light);
  grid-template-columns: 280px 1fr;
  gap: 44px;
}

.trust-band__intro h2 {
  max-width: 270px;
  font-size: 43px;
  line-height: 1.02;
}

.trust-band__intro > p {
  max-width: 265px;
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}

.trust-principles {
  display: grid;
  border-top: 1px solid var(--rule-light);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-principles article {
  min-height: 300px;
  padding: 30px 30px 32px 0;
  border-bottom: 1px solid var(--rule-light);
}

.trust-principles article + article {
  padding-left: 30px;
  border-left: 1px solid var(--rule-light);
}

.trust-principles article > span {
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.trust-principles h3 {
  max-width: 250px;
  margin-top: 78px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.trust-principles p {
  max-width: 270px;
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}

.process {
  position: relative;
  padding: clamp(118px, 11vw, 180px) 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(1000px 620px at 82% 12%, rgba(185, 218, 244, 0.26), transparent 66%),
    radial-gradient(720px 520px at 7% 88%, rgba(255, 255, 255, 0.92), transparent 68%),
    linear-gradient(145deg, #f7f9fb 0%, #edf2f6 54%, #f5f7f9 100%);
  isolation: isolate;
}

.process::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: -10%;
  width: min(52vw, 820px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(135, 195, 237, 0.12), transparent 69%);
  filter: blur(14px);
}

.process__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.68fr) minmax(620px, 1.32fr);
  gap: clamp(60px, 8vw, 140px);
}

.process__intro {
  position: sticky;
  top: 132px;
  height: max-content;
}

.process h2 {
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.98;
}

.process__intro p {
  max-width: 410px;
  margin-top: 32px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.65;
}

.process__steps {
  display: grid;
  gap: 12px;
  overflow-anchor: none;
}

.process-step {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(126, 147, 166, 0.22);
  border-radius: 20px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(130% 190% at 8% -95%, rgba(255, 255, 255, 0.96), transparent 58%),
    linear-gradient(122deg, rgba(255, 255, 255, 0.52), rgba(235, 241, 246, 0.36) 55%, rgba(213, 229, 241, 0.28)),
    rgba(244, 247, 249, 0.48);
  box-shadow:
    0 12px 32px rgba(45, 67, 86, 0.055),
    inset 1px 1px 0 rgba(255, 255, 255, 0.95),
    inset -1px -1px 0 rgba(95, 118, 139, 0.12);
  backdrop-filter: blur(26px) saturate(142%) contrast(104%);
  -webkit-backdrop-filter: blur(26px) saturate(142%) contrast(104%);
  cursor: pointer;
  grid-template-columns: 46px minmax(150px, 0.72fr) minmax(250px, 1.28fr) 38px;
  align-items: center;
  gap: 16px;
  text-align: left;
  isolation: isolate;
  transition: color 250ms ease, border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease, transform 350ms var(--ease);
}

.process-step::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(260px 130px at 14% -38%, rgba(255, 255, 255, 0.78), transparent 72%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 34%, rgba(134, 191, 232, 0.07));
  mix-blend-mode: screen;
  opacity: 0.62;
  transition: opacity 300ms ease;
}

.process-step::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.28) 34%, rgba(94, 117, 138, 0.2) 72%, rgba(142, 201, 241, 0.42));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.72;
}

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

.process-step:hover {
  border-color: rgba(102, 158, 202, 0.32);
  box-shadow:
    0 18px 42px rgba(38, 65, 88, 0.09),
    inset 1px 1px 0 rgba(255, 255, 255, 1),
    inset -1px -1px 0 rgba(83, 112, 137, 0.14);
  transform: translateY(-2px);
}

.process-step:hover::before,
.process-step.is-active::before {
  opacity: 0.96;
}

.process-step.is-active {
  border-color: rgba(93, 155, 202, 0.38);
  background:
    radial-gradient(130% 190% at 7% -90%, rgba(255, 255, 255, 1), transparent 58%),
    linear-gradient(122deg, rgba(255, 255, 255, 0.76), rgba(229, 240, 248, 0.62) 52%, rgba(196, 222, 240, 0.48)),
    rgba(235, 243, 249, 0.72);
  box-shadow:
    0 20px 50px rgba(42, 75, 101, 0.12),
    0 5px 16px rgba(72, 140, 190, 0.07),
    inset 1px 1px 0 rgba(255, 255, 255, 1),
    inset -1px -1px 0 rgba(70, 111, 144, 0.16),
    inset 0 -12px 24px rgba(115, 178, 222, 0.06);
}

.process-step__name {
  font-family: var(--serif);
}

.process-step__number {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(114, 140, 162, 0.2);
  border-radius: 13px;
  color: #617486;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(218, 231, 241, 0.4)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.94),
    inset -1px -1px 0 rgba(96, 123, 147, 0.12),
    0 7px 18px rgba(43, 67, 88, 0.06);
  place-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.13em;
  transition: color 280ms ease, border-color 280ms ease, background-color 280ms ease;
}

.process-step__name {
  color: #17212c;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.process-step__description {
  color: #647181;
  font-size: 14px;
  line-height: 1.48;
  letter-spacing: -0.006em;
}

.process-step__control {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(102, 127, 150, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.96), transparent 48%),
    rgba(232, 240, 246, 0.62);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.94),
    inset -1px -1px 0 rgba(88, 118, 143, 0.14),
    0 7px 18px rgba(43, 67, 88, 0.07);
  place-items: center;
  transition: border-color 280ms ease, background-color 280ms ease, transform 320ms var(--ease);
}

.process-step__control::before,
.process-step__control::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease);
}

.process-step__control::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.process-step.is-active .process-step__control::after {
  transform: translate(-50%, -50%) rotate(0);
}

.process-step.is-active .process-step__number,
.process-step.is-active .process-step__control {
  border-color: rgba(76, 145, 197, 0.32);
  color: #2f78ae;
  background-color: rgba(218, 237, 250, 0.76);
}

.process-step.is-active .process-step__control {
  transform: rotate(180deg);
}

.process__media {
  aspect-ratio: 2.55 / 1;
  margin: 2px 0 8px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    0 26px 58px rgba(27, 49, 68, 0.14),
    inset 1px 1px 0 rgba(255, 255, 255, 0.98),
    inset -1px -1px 0 rgba(73, 105, 130, 0.16);
  backdrop-filter: blur(22px) saturate(142%);
  -webkit-backdrop-filter: blur(22px) saturate(142%);
}

.process__media[hidden] {
  display: none;
}

.process__media.is-opening {
  animation: processPanelIn 520ms var(--ease) both;
}

@keyframes processPanelIn {
  from { opacity: 0; filter: blur(3px); transform: translateY(-5px) scale(0.992); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

.process__media img {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  object-fit: cover;
  transition: opacity 240ms ease, transform 700ms var(--ease);
}

.process__media img.is-changing {
  opacity: 0;
  transform: scale(1.02);
}

.coverage {
  display: grid;
  min-height: 590px;
  padding-left: max(72px, calc((100vw - 1600px) / 2));
  overflow: hidden;
  color: var(--limestone-bright);
  background: var(--sage);
  grid-template-columns: minmax(330px, 0.37fr) minmax(0, 1fr);
  align-items: stretch;
}

.coverage__copy {
  display: flex;
  padding: 82px clamp(48px, 5vw, 88px) 82px 0;
  flex-direction: column;
  justify-content: center;
}

.coverage h2 {
  font-size: clamp(48px, 4vw, 70px);
  line-height: 1;
}

.coverage__copy p {
  max-width: 390px;
  margin-top: 26px;
  color: #d2dce7;
  font-size: 16px;
  line-height: 1.65;
}

.coverage .arrow-button {
  width: 275px;
  margin-top: 42px;
}

.coverage__panorama {
  min-width: 0;
  overflow: auto hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--stone) transparent;
}

.coverage__panorama picture,
.coverage__panorama img {
  width: 100%;
  height: 100%;
}

.coverage__panorama img {
  max-width: none;
  object-fit: cover;
  object-position: 68% center;
}

.inquiry {
  display: grid;
  min-height: 750px;
  color: var(--limestone-bright);
  background: var(--charcoal);
  grid-template-columns: minmax(420px, 0.38fr) minmax(0, 1fr);
}

.inquiry__copy {
  display: flex;
  padding: 92px clamp(46px, 5vw, 86px) 70px max(72px, calc((100vw - 1600px) / 2));
  flex-direction: column;
  justify-content: center;
}

.inquiry h2 {
  font-size: clamp(52px, 4.6vw, 78px);
  line-height: 0.98;
}

.inquiry__copy > p {
  max-width: 440px;
  margin-top: 30px;
  color: #d3dce6;
  font-size: 16px;
  line-height: 1.65;
}

.inquiry .arrow-button {
  width: 320px;
  margin-top: 46px;
}

.inquiry .arrow-button--solid {
  border-color: rgba(145, 205, 255, 0.48);
  color: var(--limestone-bright);
  background:
    radial-gradient(140% 190% at 12% -100%, rgba(255, 255, 255, 0.26), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(120, 188, 255, 0.06)),
    rgba(8, 14, 21, 0.42);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.48),
    inset -1px -1px 0 rgba(0, 4, 8, 0.76),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.inquiry .arrow-button--solid:hover {
  border-color: rgba(185, 222, 255, 0.72);
  color: var(--limestone-bright);
  background:
    radial-gradient(140% 190% at 12% -100%, rgba(255, 255, 255, 0.3), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(120, 188, 255, 0.09)),
    rgba(8, 14, 21, 0.54);
}

.inquiry__note {
  display: flex;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--rule-light);
  color: var(--muted-light);
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.inquiry__media {
  overflow: hidden;
}

.inquiry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.inquiry:hover .inquiry__media img {
  transform: scale(1.018);
}

.site-footer {
  padding: 48px max(72px, calc((100vw - 1600px) / 2)) 26px;
  color: var(--limestone-bright);
  background: var(--charcoal-deep);
}

.site-footer__top {
  display: grid;
  min-height: 190px;
  padding-bottom: 42px;
  grid-template-columns: minmax(390px, 0.72fr) 1fr;
  align-items: center;
}

.footer-brand {
  display: flex;
  width: max-content;
  padding-right: 70px;
  border-right: 1px solid var(--rule-light);
  flex-direction: column;
}

.footer-brand > span {
  font-family: var(--serif);
  font-size: clamp(90px, 8.5vw, 146px);
  line-height: 0.72;
  letter-spacing: -0.055em;
}

.footer-brand small {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  padding-left: 70px;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid var(--rule-light);
  color: var(--muted-light);
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.site-footer__business,
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__business a,
.site-footer__legal a {
  width: max-content;
  color: var(--limestone-bright);
}

.site-footer__business a:hover,
.site-footer__legal a:hover {
  color: var(--stone);
}

.site-footer__legal {
  align-items: flex-end;
  text-align: right;
}

.site-footer__legal nav {
  display: flex;
  padding: 0;
  justify-content: flex-end;
  gap: 18px;
}

.project-dialog {
  width: min(1180px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.87), rgba(239, 245, 251, 0.76)),
    var(--limestone);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(30px) saturate(135%);
  -webkit-backdrop-filter: blur(30px) saturate(135%);
}

.project-dialog[open] {
  animation: dialogIn 420ms var(--ease) both;
}

.project-dialog::backdrop {
  background: rgba(4, 8, 13, 0.76);
  backdrop-filter: blur(12px) saturate(115%);
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(30px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.project-dialog__chrome {
  display: flex;
  min-height: 72px;
  padding: 0 28px;
  border-bottom: 1px solid var(--rule-dark);
  align-items: center;
  justify-content: space-between;
}

.project-dialog__chrome > div {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-dialog__brand {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.project-dialog__chrome button {
  position: relative;
  width: 42px;
  height: 42px;
  background: transparent;
  cursor: pointer;
}

.project-dialog__chrome button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: currentColor;
}

.project-dialog__chrome button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.project-dialog__chrome button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.project-dialog__content {
  display: grid;
  padding: clamp(42px, 6vw, 84px);
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 110px);
}

.project-dialog h2 {
  font-size: clamp(54px, 5.5vw, 82px);
  line-height: 0.96;
}

.project-dialog__intro p {
  max-width: 390px;
  margin-top: 28px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.65;
}

.project-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}

.project-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.project-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.project-form label > span {
  display: flex;
  color: #3f4a58;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-form label em {
  color: #7b8795;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(21, 34, 48, 0.38);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
  font-size: 16px;
  transition: border-color 200ms ease;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--ink);
}

.project-form textarea {
  resize: vertical;
}

.project-form__wide {
  grid-column: 1 / -1;
}

.project-form__submit {
  width: 260px;
  margin-top: 6px;
  color: var(--limestone-bright);
  border-color: rgba(13, 22, 32, 0.86);
  background: rgba(8, 14, 21, 0.91);
  grid-column: 1 / -1;
}

.project-form__submit:hover {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--charcoal);
}

.project-form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.project-form__status {
  min-height: 18px;
  margin: -12px 0 0;
  color: #9f342f;
  font-size: 12px;
  line-height: 1.5;
  grid-column: 1 / -1;
}

.project-dialog__success {
  min-height: 560px;
  padding: 80px;
  text-align: center;
  place-content: center;
}

.project-dialog__success:not([hidden]) {
  display: grid;
}

.project-dialog__success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  border: 1px solid var(--ink);
  place-items: center;
}

.project-dialog__success-mark svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.project-dialog__success h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.project-dialog__success p {
  max-width: 540px;
  margin: 20px auto 8px;
  color: var(--muted-dark);
}

.project-dialog__success .text-link {
  margin-inline: auto;
}

.legal-page {
  color: var(--ink);
  background: var(--limestone);
}

.legal-page__header {
  display: flex;
  width: var(--shell);
  min-height: 116px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule-dark);
  align-items: center;
  justify-content: space-between;
}

.legal-page .brand {
  position: static;
  color: var(--ink);
}

.legal-page .brand__name {
  font-size: 46px;
}

.legal-page .brand__descriptor {
  font-size: 8px;
}

.legal-page .text-link {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

.legal-page__main {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 140px;
}

.legal-page__label,
.legal-page__updated {
  color: #697584;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page h1 {
  max-width: 860px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.legal-page__updated {
  margin-top: 34px;
}

.legal-page__main section {
  display: grid;
  padding: 52px 0;
  border-top: 1px solid var(--rule-dark);
  grid-template-columns: minmax(210px, 0.6fr) minmax(0, 1fr);
  gap: 48px;
}

.legal-page__main section:first-of-type {
  margin-top: 90px;
}

.legal-page__main h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.legal-page__main section > p {
  color: #485666;
  font-size: 16px;
  line-height: 1.75;
}

.legal-page__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page__contact a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page__footer {
  display: flex;
  min-height: 100px;
  padding: 28px max(24px, calc((100vw - 1600px) / 2));
  color: var(--muted-light);
  background: var(--charcoal-deep);
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.not-found-page {
  min-height: 100svh;
  color: var(--limestone-bright);
  background:
    linear-gradient(90deg, rgba(5, 9, 14, 0.95), rgba(7, 14, 21, 0.42)),
    url('./public/real-projects/residential-landscape.jpg') center 58% / cover;
}

.not-found-page main {
  display: flex;
  min-height: 100svh;
  padding: 36px max(28px, calc((100vw - 1600px) / 2));
  flex-direction: column;
  justify-content: space-between;
}

.not-found-page .brand {
  position: static;
}

.not-found-page main > div > p {
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.not-found-page h1 {
  max-width: 920px;
  margin: 18px 0 38px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.js .reveal--delay {
  transition-delay: 120ms;
}

.js .reveal--delay-2 {
  transition-delay: 220ms;
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 80px, 1600px);
  }

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

  .desktop-nav {
    gap: 30px;
    margin-left: 30px;
  }

  .header-cta {
    min-width: 190px;
    gap: 20px;
  }

  .hero__content {
    width: 54vw;
  }

  .hero__next {
    grid-template-columns: 36px minmax(280px, 0.78fr) minmax(220px, 0.58fr) auto;
    font-size: 26px;
  }

  .services__top {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 54px;
  }

  .work {
    grid-template-columns: 230px 1fr;
    gap: 32px;
  }

  .trust-band {
    grid-template-columns: 230px 1fr;
    gap: 32px;
  }

  .project__meta {
    grid-template-columns: 54px 1fr;
  }

  .project__number {
    font-size: 42px;
  }

  .process__inner {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 65px;
  }

  .process-step {
    grid-template-columns: 46px 130px 1fr 38px;
  }

  .coverage,
  .inquiry__copy,
  .site-footer {
    padding-left: 40px;
  }

  .inquiry {
    grid-template-columns: 42% 58%;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 64px, 1600px);
    --header-height: 94px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 72px;
    padding: 10px 14px 10px 20px;
    border-radius: 20px;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled {
    top: 8px;
    height: 66px;
  }

  .site-header::after {
    inset: 0;
    padding: 0;
    background: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 0 0 1px rgba(255, 255, 255, 0.14),
      inset 0 -1px 0 rgba(0, 4, 8, 0.78);
    -webkit-mask: none;
    mask: none;
    opacity: 1;
  }

  .site-header .brand {
    padding-right: 0;
  }

  .site-header .brand__name {
    font-size: 34px;
  }

  .site-header .brand__descriptor {
    margin-top: 5px;
    font-size: 8px;
  }

  .site-header .brand::after {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    right: 5px;
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: transform 350ms var(--ease), top 350ms var(--ease);
  }

  .menu-toggle span:first-child { top: 19px; }
  .menu-toggle span:last-child { top: 28px; }

  .menu-open .menu-toggle span:first-child {
    top: 24px;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    top: 24px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    padding: 142px 40px 42px;
    color: var(--limestone-bright);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(120, 188, 255, 0.04)),
      rgba(5, 9, 14, 0.9);
    backdrop-filter: blur(30px) saturate(135%);
    -webkit-backdrop-filter: blur(30px) saturate(135%);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    flex-direction: column;
    transition: opacity 320ms ease, transform 500ms var(--ease), visibility 320ms;
  }

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

  .mobile-menu nav {
    display: flex;
    border-top: 1px solid var(--rule-light);
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: grid;
    min-height: 78px;
    border-bottom: 1px solid var(--rule-light);
    grid-template-columns: 42px 1fr;
    align-items: center;
    font-family: var(--serif);
    font-size: 34px;
    transition: color 220ms ease, padding-left 300ms var(--ease), background-color 220ms ease;
  }

  .mobile-menu nav a:hover {
    padding-left: 10px;
    color: #bfe1ff;
    background: rgba(255, 255, 255, 0.045);
  }

  .mobile-menu nav a span {
    color: var(--muted-light);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .mobile-menu .arrow-button {
    width: 100%;
    margin-top: auto;
  }

  .hero__content {
    width: min(700px, 78vw);
  }

  .hero h1 {
    font-size: clamp(70px, 10.4vw, 100px);
  }

  .hero__next {
    grid-template-columns: 28px 44% 1fr auto;
    gap: 18px;
    font-size: 22px;
  }

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

  .service-index {
    margin-top: 0;
  }

  .services__media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .work {
    display: block;
  }

  .work__intro {
    display: block;
    padding-bottom: 38px;
  }

  .work__intro > p {
    max-width: 440px;
  }

  .work__intro .text-link {
    margin-top: 30px;
  }

  .project-rail {
    display: flex;
    width: calc(100% + 32px);
    padding-right: 32px;
    overflow: auto hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .project-rail::-webkit-scrollbar {
    display: none;
  }

  .project {
    width: min(78vw, 500px);
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .project--landscape-lead,
  .project--outdoor-lead,
  .project--whole-home {
    width: min(78vw, 500px);
  }

  .project__media,
  .project--landscape-lead .project__media,
  .project--outdoor-lead .project__media,
  .project--whole-home .project__media {
    aspect-ratio: 4 / 5;
  }

  .trust-band {
    display: block;
    padding: 90px 0 120px;
  }

  .trust-band__intro h2,
  .trust-band__intro > p {
    max-width: 560px;
  }

  .trust-principles {
    margin-top: 58px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-principles article {
    min-height: 290px;
    padding-right: 22px;
  }

  .trust-principles article + article {
    padding-left: 22px;
    border-left: 1px solid var(--rule-light);
  }

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

  .process__intro {
    position: static;
  }

  .process-step {
    grid-template-columns: 46px 150px 1fr 38px;
  }

  .coverage {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .coverage__copy {
    padding: 92px 40px 72px;
  }

  .coverage__panorama {
    width: 100%;
    height: 430px;
  }

  .coverage__panorama picture,
  .coverage__panorama img {
    width: 100%;
  }

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

  .inquiry__copy {
    min-height: 610px;
    padding: 92px 40px 58px;
  }

  .inquiry__media {
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    padding-inline: 40px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .footer-brand {
    padding-right: 0;
    border-right: 0;
  }

  .site-footer nav {
    padding-left: 0;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 48px);
    --header-height: 84px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 64px;
    padding: 8px 10px 8px 16px;
    border-radius: 18px;
  }

  .site-header.is-scrolled {
    top: 7px;
    height: 60px;
  }

  .site-header.is-scrolled .brand__name {
    font-size: 28px;
  }

  .site-header.is-scrolled .brand__descriptor {
    margin-top: 4px;
    font-size: 6px;
  }

  .site-header::after {
    inset: 0;
  }

  .brand__name {
    font-size: 30px;
  }

  .brand__descriptor {
    margin-top: 5px;
    font-size: 7px;
  }

  .mobile-menu {
    padding: 104px 24px 24px;
  }

  #work,
  #services,
  #process,
  #about {
    scroll-margin-top: 74px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__media {
    bottom: 0;
  }

  .hero__media img {
    object-position: center center;
    transform: none;
    animation: heroInMobile 1.25s var(--ease) both;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, rgba(5, 9, 14, 0.98) 0%, rgba(5, 10, 16, 0.73) 45%, rgba(6, 12, 19, 0.08) 74%, rgba(6, 11, 17, 0.2) 100%),
      linear-gradient(90deg, rgba(5, 10, 16, 0.24), transparent 75%);
  }

  @keyframes heroInMobile {
    from { opacity: 0; }
    to { opacity: 1; transform: none; }
  }

  .hero__content {
    min-height: 820px;
    width: auto;
    margin: 0;
    padding: 210px 24px 42px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
    line-height: 0.91;
  }

  .hero__content > p {
    max-width: 430px;
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__location {
    margin-top: 36px;
  }

  .hero__next {
    display: none;
  }

  .services__top {
    padding-top: 90px;
    gap: 54px;
  }

  .services h2,
  .process h2,
  .coverage h2,
  .inquiry h2 {
    font-size: 49px;
  }

  .service-index {
    padding-top: 50px;
  }

  .service-index button {
    font-size: 14px;
  }

  .services__media {
    width: calc(100% + 48px);
    margin-left: -24px;
    aspect-ratio: 4 / 3;
    border-radius: 0;
  }

  .services__media figcaption {
    padding-inline: 24px;
  }

  .work {
    padding-top: 90px;
    padding-bottom: 105px;
  }

  .work__intro {
    display: block;
    padding-top: 34px;
  }

  .work__intro h2 {
    font-size: 39px;
  }

  .work__intro .text-link {
    margin-top: 26px;
  }

  .project-rail {
    width: calc(100% + 24px);
    gap: 14px;
    padding-right: 24px;
  }

  .project {
    width: 82vw;
  }

  .project--landscape-lead,
  .project--outdoor-lead,
  .project--whole-home {
    width: 82vw;
  }

  .trust-band {
    padding: 82px 0 104px;
  }

  .trust-band__intro h2 {
    font-size: 39px;
  }

  .trust-principles {
    display: block;
    margin-top: 48px;
  }

  .trust-principles article {
    min-height: 250px;
    padding: 28px 0;
  }

  .trust-principles article + article {
    padding-left: 0;
    border-left: 0;
  }

  .process {
    padding: 98px 0;
  }

  .process__inner {
    gap: 64px;
  }

  .process__intro p {
    margin-top: 24px;
  }

  .process-step {
    min-height: 108px;
    padding: 15px;
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    column-gap: 12px;
    row-gap: 5px;
  }

  .process-step__number {
    width: 40px;
    height: 40px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 9px;
  }

  .process-step__name {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 22px;
  }

  .process-step__description {
    padding: 0;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 13px;
  }

  .process-step__control {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .process__media {
    aspect-ratio: 1.38 / 1;
    margin-block: 0 8px;
    border-radius: 22px;
  }

  .process__media img {
    border-radius: 17px;
  }

  .coverage__copy {
    padding: 84px 24px 66px;
  }

  .coverage__copy p {
    margin-top: 22px;
  }

  .coverage__panorama {
    height: 380px;
  }

  .coverage__panorama picture,
  .coverage__panorama img {
    width: 100%;
  }

  .inquiry__copy {
    min-height: 600px;
    padding: 84px 24px 48px;
  }

  .inquiry .arrow-button {
    width: 100%;
  }

  .inquiry__media {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    padding: 42px 24px 24px;
  }

  .site-footer__top {
    min-height: 0;
    padding-bottom: 46px;
    gap: 48px;
  }

  .footer-brand > span {
    font-size: 90px;
  }

  .footer-brand small {
    margin-top: 26px;
    font-size: 10px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__legal {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__legal nav {
    display: flex;
    padding: 0;
    grid-template-columns: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .project-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100svh;
    height: 100svh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .project-dialog__chrome {
    min-height: 66px;
    padding-inline: 18px;
  }

  .project-dialog__content {
    height: calc(100svh - 66px);
    padding: 36px 24px 60px;
    overflow: auto;
    gap: 42px;
  }

  .project-dialog h2 {
    font-size: 52px;
  }

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

  .project-form__wide,
  .project-form__submit {
    grid-column: 1;
  }

  .project-form__submit {
    width: 100%;
  }

  .project-dialog__success {
    min-height: calc(100svh - 66px);
    padding: 40px 24px;
  }

  .legal-page__header {
    width: calc(100% - 48px);
    min-height: 92px;
  }

  .legal-page .brand__name {
    font-size: 38px;
  }

  .legal-page__header .text-link {
    font-size: 12px;
  }

  .legal-page__main {
    padding: 70px 0 96px;
  }

  .legal-page h1 {
    font-size: 52px;
  }

  .legal-page__main section {
    display: block;
    padding: 38px 0;
  }

  .legal-page__main section:first-of-type {
    margin-top: 62px;
  }

  .legal-page__main section > p {
    margin-top: 20px;
    font-size: 15px;
  }

  .legal-page__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .not-found-page main {
    padding: 24px;
  }

  .not-found-page h1 {
    font-size: 54px;
  }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .mobile-menu,
  .arrow-button,
  .text-link__arrow,
  .project__meta {
    background: rgba(9, 14, 21, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .project-dialog {
    color: var(--ink);
    background: var(--limestone);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .site-header,
  .arrow-button,
  .text-link__arrow,
  .project__meta {
    border-color: rgba(255, 255, 255, 0.86);
  }
}
