:root {
  --orange: #f4772e;
  --orange-bright: #ff9555;
  --orange-dark: #c2541a;
  --orange-soft: #f6dfcf;
  --ink: #191a17;
  --ink-soft: #3c3d38;
  --text: #4d4d47;
  --muted: #77766f;
  --stone: #aaa69e;
  --line: #d8d2c8;
  --line-dark: rgba(255, 255, 255, .14);
  --paper: #f6f2eb;
  --paper-deep: #ece5dc;
  --white: #fdfbf7;
  --moss: #717b55;
  --moss-dark: #4d5837;
  --moss-soft: #e4e6d5;
  --serif: "Fraunces", "Hoefler Text", Georgia, serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.22, .61, .21, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow-small: 0 14px 38px rgba(42, 41, 36, .09);
  --shadow-large: 0 32px 90px rgba(32, 31, 27, .16);
  --r-lg: 1.4rem;
  --r-md: .95rem;
  --r-sm: .8rem;
  --content: 1240px;
  --section: clamp(6rem, 10vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lb-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(244, 119, 46, .55);
  outline-offset: 4px;
}

::selection {
  background: var(--orange-soft);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section--paper {
  background: var(--white);
}

.section--dark,
.section--ink {
  overflow: hidden;
  background:
    radial-gradient(120rem 60rem at 84% -10%, rgba(244, 119, 46, .05), transparent 42%),
    var(--ink);
  color: #eae6de;
}

.grain::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  content: "";
  opacity: .05;
  pointer-events: none;
}

.grain > .container {
  position: relative;
  z-index: 1;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-optical-sizing: auto;
  letter-spacing: -.028em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.75rem;
  color: #fffdf8;
  font-size: clamp(3.4rem, 6.25vw, 6.4rem);
  font-variation-settings: "SOFT" 34;
  font-weight: 390;
  line-height: .95;
  text-wrap: balance;
}

h1 em {
  color: var(--orange-bright);
  font-style: italic;
  font-weight: 360;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  font-variation-settings: "SOFT" 28;
  font-weight: 415;
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  font-variation-settings: "SOFT" 22;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .78rem;
  margin-bottom: 1.65rem;
  color: var(--moss-dark);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2rem;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
}

.eyebrow--light {
  color: rgba(255, 253, 248, .66);
}

.eyebrow--heritage {
  color: var(--moss-dark);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .72rem;
  border: 1px solid var(--orange);
  border-radius: var(--r-md);
  padding: .88rem 1.35rem;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(177, 71, 12, .22);
  color: #211d19;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 200ms var(--ease),
    background 200ms var(--ease),
    border-color 200ms var(--ease),
    color 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.button > span {
  transition: transform 200ms var(--ease);
}

.button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  box-shadow: 0 16px 36px rgba(177, 71, 12, .28);
  color: var(--white);
  transform: translateY(-2px);
}

.button:hover > span {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(1px) scale(.99);
}

.button:disabled {
  opacity: .62;
  cursor: wait;
  transform: none;
}

.button--small {
  min-height: 2.7rem;
  border-radius: .75rem;
  padding: .68rem 1rem;
  font-size: .73rem;
}

.button--hero {
  min-height: 3.15rem;
  padding: .82rem 1.25rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .28);
}

.button--secondary {
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-bottom: 1px solid rgba(32, 33, 31, .32);
  padding: .4rem .05rem .3rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}

.text-link:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.text-link--light {
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.text-link--light:hover {
  border-color: var(--orange-bright);
  color: #ffb98b;
}

.ticks {
  position: absolute;
  z-index: 4;
  inset: .65rem;
  --tick: rgba(255, 255, 255, .38);
  background:
    linear-gradient(var(--tick), var(--tick)) 0 0 / 13px 1px,
    linear-gradient(var(--tick), var(--tick)) 0 0 / 1px 13px,
    linear-gradient(var(--tick), var(--tick)) 100% 0 / 13px 1px,
    linear-gradient(var(--tick), var(--tick)) 100% 0 / 1px 13px,
    linear-gradient(var(--tick), var(--tick)) 0 100% / 13px 1px,
    linear-gradient(var(--tick), var(--tick)) 0 100% / 1px 13px,
    linear-gradient(var(--tick), var(--tick)) 100% 100% / 13px 1px,
    linear-gradient(var(--tick), var(--tick)) 100% 100% / 1px 13px;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
}

.ticks--paper {
  --tick: rgba(170, 166, 158, .55);
}

:hover > .ticks,
:focus-within > .ticks {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange) 55%, var(--orange-bright));
  transform: scaleX(var(--progress, 0));
  transform-origin: 0 50%;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: .85rem;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(calc(100% - 2rem), 1120px);
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  padding: .3rem .35rem .3rem 1.05rem;
  background: rgba(249, 246, 240, .52);
  box-shadow:
    0 16px 42px rgba(18, 20, 17, .18),
    0 2px 8px rgba(18, 20, 17, .06),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  pointer-events: auto;
  transition:
    opacity 260ms var(--ease),
    transform 320ms var(--ease),
    background 250ms var(--ease),
    border-color 250ms var(--ease),
    box-shadow 250ms var(--ease);
}

.site-header .brand,
.nav-cluster {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto;
  transition: none;
}

.nav-shell.is-scrolled {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(249, 246, 240, .84);
  box-shadow:
    0 16px 44px rgba(20, 21, 18, .16),
    0 3px 10px rgba(20, 21, 18, .06),
    inset 0 1px 0 rgba(255, 255, 255, .85);
}

.nav-shell.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 1.25rem));
}

.brand {
  position: relative;
  z-index: 2;
  width: min(100%, 238px);
  text-decoration: none;
}

.brand > img {
  width: 100%;
  height: auto;
}

.site-header .brand {
  display: flex;
  width: max-content;
  min-width: 0;
  align-items: center;
  gap: .55rem;
  padding: .2rem .5rem .2rem 0;
}

.brand__mark {
  display: flex;
  width: 2.6rem;
  flex: 0 0 auto;
  align-items: center;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 1px 2px rgba(24, 24, 21, .28))
    drop-shadow(0 3px 8px rgba(24, 24, 21, .12));
}

.brand__name {
  color: #23201c;
  font-family: "Gill Sans", "Gill Sans MT", "Gill Sans Nova", Calibri, sans-serif;
  font-size: .94rem;
  font-weight: 400;
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
}

.brand__name strong {
  color: #d06a12;
  font-weight: 700;
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: .15rem;
  padding: 0;
}

.nav-links {
  position: absolute;
  z-index: 2;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  transform: translateX(-50%);
}

.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: .58rem .82rem;
  color: rgba(28, 29, 25, .78);
  font-size: .71rem;
  font-weight: 650;
  letter-spacing: .02em;
  text-decoration: none;
  transition:
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.nav-links a:hover {
  background: rgba(25, 26, 23, .06);
  color: var(--ink);
}

.nav-links a[aria-current="true"] {
  color: var(--ink);
}

.nav-links a[aria-current="true"]::after {
  position: absolute;
  bottom: .22rem;
  left: 50%;
  width: .24rem;
  height: .24rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateX(-50%);
}

.nav-cta {
  position: relative;
  z-index: 2;
  min-height: 2.65rem;
  border-radius: 999px;
  padding-inline: 1.1rem;
  margin-left: .12rem;
  box-shadow: 0 6px 18px rgba(177, 71, 12, .22);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(100svh, 48rem);
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 38%, rgba(91, 88, 80, .2), transparent 31rem),
    linear-gradient(135deg, #171815 0%, #11120f 100%);
  color: var(--white);
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__media {
  z-index: -3;
  transform: translateY(var(--hero-shift, 0px));
  will-change: transform;
}

.hero__survey-visual {
  position: absolute;
  top: clamp(7.8rem, 12vh, 9.8rem);
  right: max(1.25rem, calc((100vw - var(--content)) / 2));
  width: min(41vw, 41.5rem);
  height: min(67vh, 41rem);
  min-height: 32rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at 70% 46%, rgba(244, 119, 46, .13), transparent 34%),
    radial-gradient(circle at 34% 52%, rgba(225, 221, 212, .065), transparent 42%),
    linear-gradient(145deg, rgba(34, 36, 31, .98), rgba(17, 18, 15, .98));
  box-shadow:
    0 50px 125px rgba(0, 0, 0, .48),
    0 15px 42px rgba(0, 0, 0, .28),
    -16px 0 48px rgba(244, 119, 46, .07),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 0 80px rgba(0, 0, 0, .22);
  opacity: 0;
  transform: perspective(1100px) translate3d(2.8rem, .4rem, 0) rotateY(-3deg) scale(.975);
  transform-origin: 50% 50%;
  transition:
    opacity 1.2s var(--ease-out) 180ms,
    transform 1.9s var(--ease-out) 180ms;
}

.is-loaded .hero__survey-visual {
  opacity: 1;
  transform: none;
}

.no-js .hero__survey-visual {
  opacity: 1;
  transform: none;
}

.hero__survey-visual::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, .26), transparent 13%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 15%, transparent 82%, rgba(0, 0, 0, .17));
  box-shadow: inset 0 0 42px rgba(0, 0, 0, .16);
  content: "";
}

.hero__visual-grid,
.hero__point-cloud,
.hero__visual-frame {
  position: absolute;
  inset: 0;
}

.hero__visual-grid {
  background-image:
    linear-gradient(rgba(226, 221, 211, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 221, 211, .075) 1px, transparent 1px),
    linear-gradient(rgba(226, 221, 211, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 221, 211, .026) 1px, transparent 1px);
  background-position: center;
  background-size: 144px 144px, 144px 144px, 36px 36px, 36px 36px;
  opacity: .7;
}

.hero__visual-grid::before {
  display: none;
}

.hero__visual-grid::after {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -50%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  content: "";
  opacity: .32;
  transform: rotate(12deg);
  animation: hero-sheet-light 7s var(--ease-out) 3.6s both;
}

.hero__point-cloud {
  z-index: 2;
  inset: -4% -4% -4% 49%;
  background-image: radial-gradient(circle, rgba(255, 173, 100, .62) 0 .9px, transparent 1.35px);
  background-position: 0 0;
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 100% 72% at 48% 48%, #000 0 15%, rgba(0, 0, 0, .72) 52%, transparent 91%);
  mask-image: radial-gradient(ellipse 100% 72% at 48% 48%, #000 0 15%, rgba(0, 0, 0, .72) 52%, transparent 91%);
  clip-path: inset(0 0 0 var(--hero-cloud-clip, 100%));
  opacity: calc(var(--hero-ambient-opacity, 0) * .24);
  animation: hero-cloud-drift 9s ease-in-out infinite alternate;
}

.hero__point-cloud::before {
  position: absolute;
  inset: -14% -20%;
  background-image: radial-gradient(circle, rgba(255, 156, 92, .72) 0 .8px, transparent 1.25px);
  background-position: 0 0;
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(ellipse 68% 56% at 58% 47%, #000 0 12%, rgba(0, 0, 0, .62) 50%, transparent 88%);
  mask-image: radial-gradient(ellipse 68% 56% at 58% 47%, #000 0 12%, rgba(0, 0, 0, .62) 50%, transparent 88%);
  content: "";
  opacity: .31;
  animation: hero-cloud-orbit 19s linear infinite;
}

.hero__visual-frame {
  z-index: 5;
  inset: 4.5%;
  background:
    linear-gradient(rgba(222, 217, 208, .62), rgba(222, 217, 208, .62)) 0 0 / 1.6rem 1px no-repeat,
    linear-gradient(rgba(222, 217, 208, .62), rgba(222, 217, 208, .62)) 0 0 / 1px 1.6rem no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 0 / 1.6rem 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 0 / 1px 1.6rem no-repeat,
    linear-gradient(rgba(222, 217, 208, .62), rgba(222, 217, 208, .62)) 0 100% / 1.6rem 1px no-repeat,
    linear-gradient(rgba(222, 217, 208, .62), rgba(222, 217, 208, .62)) 0 100% / 1px 1.6rem no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 100% / 1.6rem 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 100% / 1px 1.6rem no-repeat;
  opacity: .6;
}

.hero__logo-structure,
.hero__drone,
.hero__cloud-static {
  position: absolute;
  inset: 5% 1%;
  width: 98%;
  height: 90%;
  object-fit: contain;
}

.hero__logo-structure {
  z-index: 3;
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(229, 224, 214, .08))
    drop-shadow(0 18px 30px rgba(0, 0, 0, .24));
  transform: translate3d(-.35rem, .16rem, 0) scale(.987);
  transition:
    opacity 1.15s var(--ease-out) 520ms,
    transform 1.65s var(--ease-out) 420ms;
}

.is-loaded .hero__logo-structure,
.no-js .hero__logo-structure,
.hero__survey-visual.cloud-failed .hero__logo-structure {
  opacity: 1;
  transform: none;
}

.hero__logo-cloud {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter:
    drop-shadow(0 0 12px rgba(244, 119, 46, .11))
    drop-shadow(0 20px 34px rgba(0, 0, 0, .16));
  transition: opacity 700ms var(--ease) 120ms;
}

.hero__survey-visual.cloud-ready .hero__logo-cloud {
  opacity: 1;
}

.hero__cloud-static {
  z-index: 3;
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(244, 119, 46, .12));
  transition: opacity 500ms var(--ease);
}

.no-js .hero__cloud-static,
.hero__survey-visual.cloud-failed .hero__cloud-static {
  opacity: 1;
}

.hero__drone {
  z-index: 5;
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(244, 119, 46, .12))
    drop-shadow(0 12px 18px rgba(0, 0, 0, .28));
  transform: translate3d(var(--hero-drone-x, 0), var(--hero-drone-y, 0), 0);
  transition: opacity 900ms var(--ease-out) 760ms;
  will-change: transform;
}

.is-loaded .hero__drone,
.no-js .hero__drone,
.hero__survey-visual.cloud-failed .hero__drone {
  opacity: 1;
}

.hero__scan-line {
  position: absolute;
  z-index: 6;
  top: 6%;
  bottom: 6%;
  left: var(--hero-scan-x, 80.5%);
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 149, 85, .8) 14%, #fff0e5 50%, rgba(255, 149, 85, .8) 86%, transparent);
  box-shadow: 0 0 18px rgba(244, 119, 46, .48);
  opacity: var(--hero-scan-opacity, 0);
}

.hero__scan-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(3rem, 8vw, 7rem);
  height: 100%;
  background: linear-gradient(90deg, rgba(244, 119, 46, .08), transparent);
  content: "";
}

.hero__scan-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .48rem;
  height: .48rem;
  border: 1px solid rgba(255, 246, 235, .95);
  border-radius: 50%;
  background: #cf570f;
  box-shadow: 0 0 0 .38rem rgba(207, 87, 15, .12);
  content: "";
  transform: translate(-50%, -50%);
}

.hero__target {
  position: absolute;
  z-index: 5;
  width: .78rem;
  height: .78rem;
  border: 1px solid rgba(231, 226, 217, .58);
  border-radius: 50%;
  background: rgba(28, 29, 25, .78);
  box-shadow: 0 0 0 0 rgba(207, 87, 15, .22);
  opacity: 0;
  transform: scale(.7);
  transition: opacity 500ms var(--ease), transform 600ms var(--ease-out);
}

.hero__survey-visual.cloud-ready .hero__target {
  opacity: .68;
  transform: scale(1);
  animation-name: hero-target-pulse;
  animation-duration: 3.6s;
  animation-timing-function: ease-out;
  animation-iteration-count: 2;
}

.hero__target::before,
.hero__target::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.hero__target::before {
  width: .2rem;
  height: .2rem;
  border-radius: 50%;
  background: var(--orange-dark);
}

.hero__target::after {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(244, 119, 46, .26);
  border-radius: 50%;
}

.hero__target--two {
  top: 28%;
  left: 58%;
  transition-delay: 1.85s;
  animation-delay: 4.5s;
}

.hero__target--three {
  top: 58%;
  right: 25%;
  transition-delay: 2.05s;
  animation-delay: 5.3s;
}

.hero__datum {
  position: absolute;
  z-index: 4;
  opacity: 0;
  transition: opacity 800ms var(--ease) 1.8s;
}

.hero__survey-visual.cloud-ready .hero__datum {
  opacity: .22;
}

.hero__datum--horizontal {
  right: 9%;
  bottom: 21%;
  left: 9%;
  border-top: 1px dashed rgba(216, 211, 202, .3);
}

.hero__datum--vertical {
  top: 11%;
  bottom: 12%;
  left: 56.5%;
  border-left: 1px dashed rgba(244, 119, 46, .3);
}

.hero__datum--vertical::after {
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 18%;
  background: linear-gradient(transparent, rgba(255, 179, 119, .72), transparent);
  content: "";
  opacity: .7;
  animation: hero-seam-trace 3.8s var(--ease) 2.8s infinite;
}

.hero__visual-label {
  position: absolute;
  z-index: 7;
  color: rgba(225, 220, 211, .55);
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__visual-label--top {
  top: 4.4%;
  left: 5%;
}

.hero__visual-label--bottom {
  right: 5%;
  bottom: 4.4%;
}

@keyframes hero-cloud-drift {
  from { transform: translate3d(-7px, 3px, 0); }
  to { transform: translate3d(9px, -5px, 0); }
}

@keyframes hero-cloud-orbit {
  to { transform: rotate(360deg) scale(1.035); }
}

@keyframes hero-sheet-light {
  0% { left: -50%; opacity: 0; }
  15% { opacity: .18; }
  70% { opacity: .12; }
  100% { left: 122%; opacity: 0; }
}

@keyframes hero-seam-trace {
  0% { top: -8%; opacity: 0; }
  18% { opacity: .68; }
  72% { opacity: .68; }
  100% { top: 90%; opacity: 0; }
}

@keyframes hero-target-pulse {
  0% { box-shadow: 0 0 0 0 rgba(207, 87, 15, .25); }
  55% { box-shadow: 0 0 0 .65rem rgba(207, 87, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(207, 87, 15, 0); }
}

.hero__scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 16, 14, .99) 0%, rgba(14, 16, 14, .95) 38%, rgba(14, 16, 14, .62) 49%, rgba(14, 16, 14, .12) 59%, transparent 72%),
    linear-gradient(0deg, rgba(12, 13, 11, .9) 0%, rgba(12, 13, 11, .2) 15%, transparent 40%);
}

.point-field {
  position: absolute;
  background-image:
    radial-gradient(circle, rgba(244, 119, 46, .9) 0 1.1px, transparent 1.45px),
    radial-gradient(circle, rgba(247, 172, 92, .8) 0 1px, transparent 1.3px);
  background-position: 0 0, 10px 10px;
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 36%, #000 72%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000 72%, transparent);
  pointer-events: none;
}

.point-field--hero {
  z-index: -1;
  top: 13rem;
  right: -8rem;
  width: 42rem;
  height: 28rem;
  opacity: .085;
  transform: rotate(7deg);
}

.hero__body {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 42rem;
  flex: 1;
  align-items: end;
  grid-template-columns: minmax(0, 35rem) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: clamp(8.5rem, 15vh, 11rem);
  padding-bottom: clamp(3.2rem, 8vh, 5.5rem);
}

.hero__copy {
  align-self: center;
  max-width: 35rem;
}

.hero h1 {
  max-width: 11.25ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.95rem, 4.3vw, 4.8rem);
  line-height: .97;
}

.hero .eyebrow {
  margin-bottom: 1.3rem;
}

.hero__lead {
  max-width: 33rem;
  margin-bottom: 1.7rem;
  color: rgba(255, 253, 248, .85);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.hero__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: rgba(10, 12, 10, .18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__facts p {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  padding: .95rem 1.2rem;
  color: rgba(255, 253, 248, .72);
  font-size: .74rem;
  transition: color 250ms var(--ease);
}

.hero__facts p:hover {
  color: rgba(255, 253, 248, .95);
}

.hero__facts p:first-child {
  padding-left: 0;
}

.hero__facts p:last-child {
  border-right: 0;
}

.hero__facts span {
  color: var(--orange-bright);
  font-family: var(--mono);
  font-size: .58rem;
}

.js .seq {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.js .seq-1 { transition-delay: 120ms; }
.js .seq-2 { transition-delay: 240ms; }
.js .seq-3 { transition-delay: 400ms; }
.js .seq-4 { transition-delay: 520ms; }
.js .seq-5 { transition-delay: 680ms; }
.js .seq-6 { transition-delay: 780ms; }

.js.is-loaded .seq,
.js .is-loaded .seq {
  opacity: 1;
  transform: none;
}

body.is-loaded .seq {
  opacity: 1;
  transform: none;
}

.overview {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.overview__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.overview__copy {
  max-width: 51rem;
}

.overview__copy h2 {
  max-width: 16ch;
}

.overview__copy > p:not(.eyebrow) {
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.use-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(170, 166, 158, .55);
  border-radius: var(--r-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .92), rgba(240, 234, 225, .74));
  box-shadow: var(--shadow-large);
}

.use-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.2rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.use-card__top span:last-child {
  color: var(--orange-dark);
}

.use-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: .4rem 1.2rem;
  list-style: none;
}

.use-card li {
  position: relative;
  border-bottom: 1px solid rgba(216, 210, 200, .75);
  padding: 1.05rem .2rem 1.05rem 1.2rem;
  color: var(--ink-soft);
  font-size: .9rem;
  transition: padding-left 250ms var(--ease);
}

.use-card li:hover {
  padding-left: 1.45rem;
}

.use-card li:last-child {
  border-bottom: 0;
}

.use-card li::before {
  position: absolute;
  top: 1.58rem;
  left: .05rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.use-card > p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 1.1rem 1.2rem 1.2rem;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .52fr);
  gap: 3rem;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.section-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: .35rem;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading--inverse h2,
.section-heading--inverse h3 {
  color: #f3efe7;
}

.section-heading--inverse > p {
  color: #b9b5ad;
}

.point-field--outputs {
  top: -5rem;
  right: -10rem;
  width: 50rem;
  height: 32rem;
  opacity: .09;
  transform: rotate(-8deg);
}

.outputs-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.output-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: #101110;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.output-card:hover,
.output-card:focus-within {
  border-color: rgba(255, 255, 255, .26);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
}

.output-card--roof {
  grid-row: 1 / 3;
}

.output-card__media {
  position: relative;
  min-height: 18rem;
  flex: 1;
  overflow: hidden;
  background: #090a08;
}

.output-card__media::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  content: "";
  pointer-events: none;
}

.output-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.output-card:hover .output-card__media img {
  filter: brightness(1.05);
  transform: scale(1.014);
}

.output-card__media--contain {
  min-height: 43rem;
  padding: 1.3rem;
}

.output-card__media--contain img {
  object-fit: contain;
}

.output-card figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: .95rem 1.05rem;
  background: rgba(16, 17, 16, .6);
  color: rgba(255, 253, 248, .72);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.output-card figcaption span:last-child {
  color: var(--orange-bright);
}

.output-card__open {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.output-card__open:focus-visible {
  outline-offset: -5px;
  border-radius: inherit;
}

.output-card__open--inspect {
  cursor: crosshair;
}

.inspect {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease);
}

.output-card__media.is-inspecting .inspect {
  opacity: 1;
}

.inspect__line {
  position: absolute;
  background: rgba(255, 255, 255, .34);
}

.inspect__line--h {
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(var(--cy, -100px));
}

.inspect__line--v {
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(var(--cx, -100px));
}

.inspect__loupe {
  position: absolute;
  top: 0;
  left: 0;
  width: 14rem;
  height: 14rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 240ms var(--ease);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  background-color: #0a0b09;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .52),
    inset 0 0 0 1px rgba(0, 0, 0, .5);
  transform: translate(calc(var(--cx, -300px) - 50%), calc(var(--cy, -300px) - 50%));
  will-change: transform;
}

.inspect__loupe-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.inspect__loupe::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 149, 85, .8), rgba(255, 149, 85, .8)) 50% 50% / 13px 1px,
    linear-gradient(rgba(255, 149, 85, .8), rgba(255, 149, 85, .8)) 50% 50% / 1px 13px;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.inspect__chip {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .45rem;
  padding: .32rem .55rem;
  background: rgba(13, 14, 12, .92);
  color: #f3efe7;
  font-family: var(--mono);
  font-size: .6rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .06em;
  transform: translate(calc(var(--cx, -300px) + 1.1rem), calc(var(--cy, -300px) + 1.3rem));
  white-space: nowrap;
}

/* The magnifier only appears once the full-resolution source is decoded,
   so it can never show a soft, upscaled preview. */
.output-card__media.is-loupe-ready .inspect__loupe {
  opacity: 1;
}

/* Touch devices have no hover, so the plate offers no inspect affordance there. */
@media (hover: none) {
  .inspect-hint {
    display: none;
  }
}

.inspect-hint {
  position: absolute;
  z-index: 3;
  top: 1.05rem;
  left: 1.05rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: .42rem .78rem .42rem .5rem;
  background: rgba(13, 14, 12, .74);
  color: rgba(255, 253, 248, .9);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.inspect-hint__glyph {
  position: relative;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 119, 46, .16);
  color: var(--orange-bright);
}

.inspect-hint__glyph svg {
  width: .92rem;
  height: .92rem;
}

/* One quiet pulse ring so the plate reads as interactive before anyone hovers. */
.inspect-hint__glyph::after {
  position: absolute;
  inset: 0;
  border: 1px solid var(--orange-bright);
  border-radius: 50%;
  content: "";
  opacity: 0;
}

.output-card__media.is-loupe-ready:not(.has-inspected) .inspect-hint__glyph::after {
  animation: inspect-pulse 2.6s var(--ease) infinite;
}

@keyframes inspect-pulse {
  0% { opacity: .7; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.85); }
  100% { opacity: 0; transform: scale(1.85); }
}

/* While the full-resolution file downloads the hint stays put and reports
   progress; it only steps aside once the magnifier is actually usable. */
.output-card__media.is-loupe-ready.is-inspecting .inspect-hint {
  opacity: 0;
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .output-card__media.is-loupe-ready:not(.has-inspected) .inspect-hint__glyph::after {
    animation: none;
  }
}

.format-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(3.5rem, 7vw, 5.5rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.format-list > div {
  border-right: 1px solid var(--line-dark);
  padding: 1.7rem 1.8rem 0 0;
}

.format-list > div:not(:first-child) {
  padding-left: 1.8rem;
}

.format-list > div:last-child {
  border-right: 0;
}

.format-list dt {
  margin-bottom: .7rem;
  color: #f3efe7;
  font-family: var(--serif);
  font-size: 1.4rem;
  transition: color 250ms var(--ease);
}

.format-list > div:hover dt {
  color: var(--orange-bright);
}

.format-list dd {
  margin: 0;
  color: #a9a59e;
  font-size: .82rem;
  line-height: 1.6;
}

.services {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-ledger {
  border-top: 1px solid rgba(25, 26, 23, .22);
  border-bottom: 1px solid rgba(25, 26, 23, .22);
}

.svc {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(25, 26, 23, .13);
  padding-block: clamp(2.2rem, 4vw, 3.2rem);
  transition: background 300ms var(--ease);
}

.svc:last-child {
  border-bottom: 0;
}

.svc::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--orange);
  content: "";
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 600ms var(--ease) 150ms;
}

.svc.is-visible::before {
  transform: scaleY(1);
}

.svc:hover {
  background: rgba(253, 251, 247, .6);
}

.svc__intro {
  display: flex;
  gap: 1.4rem;
  padding-left: 1.6rem;
}

.svc__num {
  padding-top: .55rem;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .06em;
}

.svc__kicker {
  margin: 0 0 .8rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.svc__intro h3 {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-variation-settings: "SOFT" 22;
  font-weight: 435;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.svc__body {
  padding-right: clamp(0rem, 3vw, 2.5rem);
}

.svc__body > p {
  max-width: 42rem;
  margin: .35rem 0 1.4rem;
  color: var(--text);
  font-size: .96rem;
}

.svc__body ul {
  display: grid;
  gap: .68rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc__body li {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  color: var(--ink-soft);
  font-size: .87rem;
}

.svc__body li::before {
  width: .36rem;
  height: .36rem;
  flex: 0 0 auto;
  border-radius: 1px;
  background: var(--orange);
  content: "";
}

.secondary-service {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, .6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 7vw, 6rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--line);
  padding-block: 2.2rem;
}

.secondary-service .eyebrow {
  margin: .45rem 0 0;
}

.secondary-service > div {
  max-width: 48rem;
}

.secondary-service h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  font-weight: 420;
  line-height: 1.08;
}

.secondary-service p {
  margin-bottom: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 0;
  list-style: none;
}

.workflow-grid li {
  min-height: 19rem;
  border-right: 1px solid rgba(255, 255, 255, .15);
  padding: 2rem 1.8rem 1.5rem;
  transition: background 350ms var(--ease);
}

.workflow-grid li:hover {
  background: rgba(255, 255, 255, .03);
}

.workflow-grid li:last-child {
  border-right: 0;
}

.workflow-grid span {
  position: relative;
  display: block;
  margin-bottom: 4.5rem;
  color: var(--orange-bright);
  font-family: var(--mono);
  font-size: .67rem;
}

.workflow-grid span::after {
  position: absolute;
  top: 1.5rem;
  left: .1rem;
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(rgba(255, 149, 85, .55), transparent);
  content: "";
}

.workflow-grid h3 {
  margin-bottom: .8rem;
  color: #f3efe7;
  font-size: 1.75rem;
  font-weight: 450;
}

.workflow-grid p {
  margin-bottom: 0;
  color: #aaa69f;
  font-size: .86rem;
  line-height: 1.62;
}

.heritage {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), transparent 45%),
    var(--moss-soft);
}

.heritage__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.heritage__marker {
  align-self: stretch;
  border-right: 1px solid rgba(77, 88, 55, .26);
  padding-right: 3rem;
}

.vertical-mark {
  display: block;
  width: .8rem;
  height: 8.5rem;
  margin-bottom: 2rem;
  border-radius: .25rem;
  background:
    linear-gradient(to bottom, var(--moss-dark) 0 29%, transparent 29% 36%, var(--moss) 36% 65%, transparent 65% 72%, #afb793 72% 100%);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 1000ms var(--ease-out) 150ms;
}

.heritage__marker.is-visible .vertical-mark {
  transform: scaleY(1);
}

.heritage__marker p {
  max-width: 14ch;
  margin-bottom: .35rem;
  color: var(--moss-dark);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.15;
}

.heritage__marker small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.heritage__copy {
  max-width: 49rem;
}

.heritage__copy h2 {
  max-width: 15ch;
}

.heritage__copy > p:not(.eyebrow) {
  max-width: 45rem;
  font-size: 1.02rem;
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(390px, .92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.about__art {
  position: relative;
  display: grid;
  min-height: 32rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at 51% 47%, #f8f6f1 0%, #f3efe9 58%, #e9e3da 100%);
  box-shadow: var(--shadow-large);
}

.about__art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(rgba(170, 166, 158, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 166, 158, .13) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about__art::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 49% 40%, rgba(244, 119, 46, .07), transparent 42%);
  box-shadow:
    inset 0 0 58px 34px rgba(233, 226, 216, .6),
    inset 0 0 18px rgba(233, 226, 216, .4);
  content: "";
  pointer-events: none;
}

.about__lockup {
  position: absolute;
  z-index: 2;
  inset: clamp(1.6rem, 7%, 3rem);
}

.about__point-cloud,
.about__lockup-frame {
  position: absolute;
  inset: 0;
}

.about__point-cloud {
  background-image:
    radial-gradient(circle, rgba(227, 104, 31, .7) 0 1px, transparent 1.35px),
    radial-gradient(circle, rgba(92, 87, 78, .34) 0 .8px, transparent 1.2px);
  background-position: 0 0, 9px 9px;
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 52% 47% at 62% 42%, #000 0 18%, rgba(0, 0, 0, .7) 46%, transparent 82%);
  mask-image: radial-gradient(ellipse 52% 47% at 62% 42%, #000 0 18%, rgba(0, 0, 0, .7) 46%, transparent 82%);
  opacity: .34;
  animation: about-cloud-drift 9.5s ease-in-out infinite alternate;
}

.about__lockup-frame {
  inset: 3%;
  background:
    linear-gradient(rgba(82, 78, 70, .58), rgba(82, 78, 70, .58)) 0 0 / 1.35rem 1px no-repeat,
    linear-gradient(rgba(82, 78, 70, .58), rgba(82, 78, 70, .58)) 0 0 / 1px 1.35rem no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 0 / 1.35rem 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 0 / 1px 1.35rem no-repeat,
    linear-gradient(rgba(82, 78, 70, .58), rgba(82, 78, 70, .58)) 0 100% / 1.35rem 1px no-repeat,
    linear-gradient(rgba(82, 78, 70, .58), rgba(82, 78, 70, .58)) 0 100% / 1px 1.35rem no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 100% / 1.35rem 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 100% 100% / 1px 1.35rem no-repeat;
  opacity: .5;
}

.about__mark {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 64%;
  height: auto;
  transform: translate(-50%, -50%);
}

.about__mark--draft {
  opacity: 0;
  filter: grayscale(1) contrast(.82);
  transform: translate(-50%, -50%) scale(.9);
  transition:
    opacity 700ms var(--ease) 180ms,
    transform 1.2s var(--ease-out) 120ms;
}

.about__art.is-visible .about__mark--draft,
.no-js .about__mark--draft {
  opacity: .2;
  transform: translate(-50%, -50%) scale(1);
}

.about__mark-reveal {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.9s var(--ease-out) 620ms;
}

.about__art.is-visible .about__mark-reveal,
.no-js .about__mark-reveal {
  clip-path: inset(0);
}

.about__mark--final {
  filter:
    saturate(1.04)
    drop-shadow(0 16px 24px rgba(49, 45, 39, .12));
}

.about__scan-line {
  position: absolute;
  z-index: 3;
  top: 8%;
  bottom: 23%;
  left: 8%;
  width: 1px;
  background: linear-gradient(transparent, rgba(201, 80, 14, .75) 17%, #c9500e 50%, rgba(201, 80, 14, .75) 83%, transparent);
  box-shadow: 0 0 14px rgba(201, 80, 14, .3);
  opacity: 0;
}

.about__art.is-visible .about__scan-line {
  animation: about-scan 3.1s var(--ease-out) 720ms both;
}

.about__scan-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .42rem;
  height: .42rem;
  border: 1px solid #fff8ee;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 .32rem rgba(244, 119, 46, .1);
  content: "";
  transform: translate(-50%, -50%);
}

.about__node {
  position: absolute;
  z-index: 3;
  width: .38rem;
  height: .38rem;
  border: 1px solid rgba(255, 247, 238, .95);
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transform: scale(.6);
  transition: opacity 450ms var(--ease), transform 550ms var(--ease-out);
}

.about__art.is-visible .about__node,
.no-js .about__node {
  opacity: .84;
  transform: scale(1);
}

.about__node--one {
  top: 30%;
  left: 27%;
  transition-delay: 1.1s;
}

.about__node--two {
  top: 49%;
  right: 23%;
  transition-delay: 1.35s;
}

.about__node--three {
  right: 37%;
  bottom: 32%;
  transition-delay: 1.6s;
}

.about__wordmark {
  position: absolute;
  right: 8%;
  bottom: 14%;
  left: 8%;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(.82rem, 1.6vw, 1.08rem);
  font-weight: 500;
  letter-spacing: .28em;
  text-align: center;
  opacity: 0;
  transform: translateY(.65rem);
  transition:
    opacity 700ms var(--ease) 1.05s,
    transform 850ms var(--ease-out) 1.05s;
}

.about__wordmark strong {
  color: var(--orange-dark);
  font-weight: 700;
}

.about__art.is-visible .about__wordmark,
.no-js .about__wordmark {
  opacity: 1;
  transform: none;
}

.about__lockup-label {
  position: absolute;
  right: 6%;
  bottom: 3.6%;
  color: rgba(78, 73, 66, .55);
  font-family: var(--mono);
  font-size: .53rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@keyframes about-cloud-drift {
  from { transform: translate3d(-5px, 3px, 0); }
  to { transform: translate3d(7px, -4px, 0); }
}

@keyframes about-scan {
  0% {
    left: 8%;
    opacity: 0;
  }
  16% {
    opacity: .85;
  }
  82% {
    opacity: .85;
  }
  100% {
    left: 92%;
    opacity: 0;
  }
}

.about__copy {
  max-width: 45rem;
}

.about__copy h2 {
  max-width: 14ch;
}

.contact {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 119, 46, .08), transparent 28%),
    var(--paper);
}

.contact__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .95fr) minmax(490px, 1.05fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.contact__copy h2 {
  max-width: 12ch;
  color: var(--ink);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--text);
  font-size: 1rem;
}

.contact-rows {
  display: grid;
  gap: .85rem;
  margin-top: 2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--ink-soft);
  font-size: .9rem;
  text-decoration: none;
}

.contact-row[href]:hover {
  color: var(--orange-dark);
}

.contact-row[href]:hover .contact-chip {
  border-color: rgba(244, 119, 46, .4);
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.contact-chip {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(77, 88, 55, .12);
  border-radius: .85rem;
  background: var(--moss-soft);
  color: var(--moss-dark);
  font-family: var(--mono);
  font-size: .92rem;
  transition: border-color 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease);
}

.map-wrap {
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper-deep);
  box-shadow: var(--shadow-small);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 16.5rem;
  border: 0;
  filter: grayscale(.3) sepia(.1) saturate(.86);
  transition: filter 400ms var(--ease);
}

.map-wrap:hover iframe {
  filter: grayscale(.05) sepia(.03) saturate(1);
}

.enquiry-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(253, 251, 247, .92);
  box-shadow: var(--shadow-large);
}

.enquiry-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-row {
  display: grid;
  gap: .45rem;
}

.form-row--full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
}

.required {
  color: var(--orange);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid #d7cfc3;
  border-radius: var(--r-sm);
  padding: .82rem .88rem;
  background: #f3eee6;
  color: var(--ink);
  outline: none;
  transition:
    border-color 200ms var(--ease),
    background 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.form-row select {
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2377766f' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right .95rem center;
  background-repeat: no-repeat;
  color-scheme: light;
}

.form-row textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244, 119, 46, .16);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #8a877f;
}

.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #b84d33;
}

.form-footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 1rem;
  margin-top: .4rem;
}

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

.form-footer p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: #9b3c28;
  font-size: .77rem;
  text-align: center;
}

.form-success {
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  text-align: center;
}

.form-success > span {
  display: inline-grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--moss-soft);
  color: var(--moss-dark);
  font-size: 1.7rem;
}

.form-success h3 {
  margin-bottom: .65rem;
  font-size: 1.8rem;
}

.form-success p {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem 1.7rem;
  background: var(--paper);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.8rem;
}

.brand--footer {
  width: 210px;
}

.footer__top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer__top nav a {
  color: var(--muted);
  font-size: .75rem;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.footer__top nav a:hover {
  color: var(--orange-dark);
}

.footer__bottom {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 2rem;
  padding-top: 1.5rem;
}

.footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .04em;
}

.footer__bottom p:last-child {
  justify-self: end;
  max-width: 40rem;
  text-align: right;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  border: 0;
  padding: clamp(1rem, 4vw, 3rem);
  background: transparent;
  color: #f3efe7;
}

.lightbox[open] {
  display: grid;
  place-items: center;
  animation: lightbox-in 320ms var(--ease-out);
}

.lightbox::backdrop {
  background: rgba(9, 10, 8, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(.985);
  }
}

.lightbox__figure {
  display: grid;
  max-width: min(1380px, 100%);
  margin: 0;
  gap: .9rem;
}

.lightbox__stage {
  position: relative;
  display: flex;
  min-width: 0;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: min(74vh, 60rem);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
}

/* The same magnifier, carried into the full-screen view. */
.lightbox__stage.is-inspectable .lightbox__img {
  cursor: crosshair;
}

.lightbox__inspect {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease);
}

.lightbox__inspect.is-active {
  opacity: 1;
}

.lightbox__inspect .inspect__loupe {
  opacity: 1;
}

.lightbox__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: .8rem;
  color: rgba(255, 253, 248, .74);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lightbox__caption span:last-child {
  color: var(--orange-bright);
}

.lightbox__button {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(18, 19, 16, .55);
  color: #f3efe7;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 200ms var(--ease), color 200ms var(--ease), background 200ms var(--ease);
}

.lightbox__button:hover {
  border-color: var(--orange-bright);
  background: rgba(18, 19, 16, .8);
  color: var(--orange-bright);
}

.lightbox__close {
  top: 1.3rem;
  right: 1.3rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.lightbox__prev {
  left: 1.3rem;
}

.lightbox__next {
  right: 1.3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 760ms var(--ease-out) var(--reveal-delay, 0ms);
}

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

@supports not (backdrop-filter: blur(1px)) {
  .nav-shell {
    background: rgba(248, 245, 239, .96);
  }

  .lightbox::backdrop {
    background: rgba(9, 10, 8, .95);
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    overflow: visible;
  }

  .nav-cluster {
    padding: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .7rem;
    border: 0;
    border-radius: 999px;
    padding: .55rem .75rem;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    transition: background 180ms var(--ease);
  }

  .menu-toggle:hover {
    background: rgba(25, 26, 23, .06);
  }

  .menu-toggle__label {
    font-size: .71rem;
    font-weight: 700;
  }

  .menu-toggle__lines {
    display: grid;
    gap: .3rem;
  }

  .menu-toggle__lines i {
    display: block;
    width: 1.2rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms var(--ease);
  }

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

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

  .nav-links {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    left: auto;
    width: min(calc(100vw - 2rem), 23rem);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: .1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 1.5rem;
    padding: .55rem;
    background: rgba(250, 247, 241, .94);
    box-shadow:
      0 26px 64px rgba(22, 23, 20, .32),
      0 4px 14px rgba(22, 23, 20, .15),
      inset 0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(34px) saturate(190%);
    -webkit-backdrop-filter: blur(34px) saturate(190%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.96);
    transform-origin: top right;
    transition:
      opacity 240ms var(--ease),
      transform 320ms var(--ease-out),
      visibility 0s linear 320ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition:
      opacity 260ms var(--ease),
      transform 380ms var(--ease-out),
      visibility 0s;
  }

  .nav-links a {
    border-radius: 1.05rem;
    padding: .95rem 1.1rem;
    color: var(--ink);
    font-size: .92rem;
    text-shadow: none;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 300ms var(--ease),
      transform 340ms var(--ease-out),
      background 180ms var(--ease);
  }

  .nav-links.is-open a {
    opacity: 1;
    transform: none;
  }

  .nav-links.is-open a:nth-child(1) { transition-delay: 80ms; }
  .nav-links.is-open a:nth-child(2) { transition-delay: 130ms; }
  .nav-links.is-open a:nth-child(3) { transition-delay: 180ms; }
  .nav-links.is-open a:nth-child(4) { transition-delay: 230ms; }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(25, 26, 23, .05);
  }

  .nav-links a[aria-current="true"] {
    background: rgba(244, 119, 46, .12);
  }

  .nav-links a[aria-current="true"]::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero__body {
    grid-template-columns: min(52vw, 34rem) 1fr;
  }

  .hero__copy {
    max-width: min(52vw, 34rem);
  }

  .hero__survey-visual {
    /* Keep the framed panel fully on screen, as it is on desktop. Bleeding it
       off the right edge cut the frame border and the caption at this width. */
    right: 1.25rem;
    width: min(40vw, 31rem);
    height: min(62vh, 35rem);
  }

  .overview__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .overview__copy,
  .about__copy,
  .contact__copy {
    max-width: 48rem;
  }

  .use-card {
    width: min(100%, 44rem);
    justify-self: end;
  }

  .contact__copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 39rem;
  }

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

  .output-card--roof {
    grid-row: auto;
  }

  .output-card__media,
  .output-card__media--contain {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  /* The orthophoto plate is portrait, so give it a portrait box rather than
     letterboxing it inside a landscape one. */
  .output-card__media--contain {
    padding: .8rem;
    aspect-ratio: 4 / 5;
  }

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

  .format-list > div,
  .format-list > div:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 1.35rem 0;
  }

  .format-list > div:last-child {
    border-bottom: 0;
  }

  .svc {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .svc__body {
    padding-right: 0;
    padding-left: 1.6rem;
  }

  .svc__body > p {
    margin-top: 0;
  }

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

  .workflow-grid li {
    min-height: 15rem;
  }

  .workflow-grid li:nth-child(2) {
    border-right: 0;
  }

  .workflow-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }
}

@media (max-width: 680px) {
  :root {
    --section: 5.4rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--content));
  }

  .site-header {
    top: .55rem;
  }

  .nav-shell {
    width: calc(100% - 1rem);
    min-height: 3.4rem;
    gap: .65rem;
    border-radius: 999px;
    padding: .26rem .3rem .26rem .8rem;
  }

  .brand {
    width: 194px;
  }

  .site-header .brand {
    width: max-content;
    min-width: 0;
    gap: .45rem;
    padding: .2rem .42rem .2rem 0;
  }

  .brand__mark {
    width: 2.35rem;
  }

  .brand__name {
    font-size: .86rem;
    letter-spacing: .075em;
  }

  .nav-cluster {
    padding: 0;
  }

  .nav-links {
    right: auto;
    left: 0;
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

  .hero__survey-visual {
    top: 5.2rem;
    right: auto;
    left: 50%;
    width: min(calc(100% - 2rem), 36rem);
    height: 19.5rem;
    min-height: 0;
    border-radius: 1.4rem;
    transform: perspective(900px) translate3d(-48%, .35rem, 0) rotateY(-2deg) scale(.975);
  }

  .is-loaded .hero__survey-visual {
    opacity: 1;
    transform: translateX(-50%);
  }

  .no-js .hero__survey-visual {
    transform: translateX(-50%);
  }

  .hero__visual-label {
    font-size: .44rem;
  }

  .hero__target {
    width: .66rem;
    height: .66rem;
  }

  .hero__target::after {
    width: 1rem;
    height: 1rem;
  }

  .hero__visual-grid::before {
    opacity: .55;
  }

  .hero__scrim {
    background:
      linear-gradient(0deg, rgba(12, 13, 11, .98) 0%, rgba(12, 13, 11, .94) 48%, rgba(12, 13, 11, .28) 66%, transparent 84%);
  }

  .hero__body {
    min-height: 51rem;
    grid-template-columns: 1fr;
    padding-top: 25.2rem;
    padding-bottom: 3.2rem;
  }

  .hero__copy {
    align-self: end;
    /* The hero is a single column here, so drop the two-column 52vw cap
       inherited from the tablet rule — it was squeezing the headline. */
    max-width: 100%;
  }

  .hero h1 {
    max-width: 11.8ch;
    margin-bottom: 1.2rem;
    font-size: clamp(2.7rem, 11.5vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.3rem, 10.4vw, 3.4rem);
  }

  .hero__lead {
    max-width: 33rem;
    margin-bottom: 1.5rem;
    font-size: .96rem;
    line-height: 1.55;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero__facts p,
  .hero__facts p:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding: .82rem 0;
  }

  .hero__facts p:last-child {
    border-bottom: 0;
  }

  .overview__grid,
  .section-heading,
  .heritage__grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .use-card {
    width: 100%;
  }

  .output-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
  }

  .inspect-hint {
    top: .7rem;
    left: .7rem;
    gap: .38rem;
    padding: .34rem .58rem .34rem .38rem;
    font-size: .52rem;
    letter-spacing: .05em;
  }

  .inspect-hint__glyph {
    width: 1.15rem;
    height: 1.15rem;
  }

  .inspect-hint__glyph svg {
    width: .8rem;
    height: .8rem;
  }

  .svc__intro {
    gap: 1rem;
    padding-left: 1.05rem;
  }

  .svc__body {
    padding-left: 1.05rem;
  }

  .secondary-service {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .secondary-service .eyebrow {
    margin: 0;
  }

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

  .workflow-grid li,
  .workflow-grid li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 1.65rem .2rem;
  }

  .workflow-grid li:last-child {
    border-bottom: 0;
  }

  .workflow-grid span {
    margin-bottom: 2.5rem;
  }

  .workflow-grid span::after {
    height: 1.4rem;
  }

  .heritage__marker {
    border-right: 0;
    border-bottom: 1px solid rgba(77, 88, 55, .26);
    padding: 0 0 2.5rem;
  }

  .vertical-mark {
    width: 7.5rem;
    height: .8rem;
    background:
      linear-gradient(to right, var(--moss-dark) 0 29%, transparent 29% 36%, var(--moss) 36% 65%, transparent 65% 72%, #afb793 72% 100%);
    transform: scaleX(0);
    transform-origin: 0 50%;
  }

  .heritage__marker.is-visible .vertical-mark {
    transform: scaleX(1);
  }

  .about__art {
    min-height: 23rem;
  }

  .about__lockup {
    inset: 1.25rem;
  }

  .about__mark {
    width: 69%;
  }

  .about__wordmark {
    right: 4%;
    left: 4%;
    font-size: .72rem;
    letter-spacing: .19em;
  }

  .about__lockup-label {
    font-size: .46rem;
  }

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

  .form-row--full {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer__top,
  .footer__bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer__top nav {
    justify-content: flex-start;
  }

  .footer__bottom p:last-child {
    justify-self: start;
    text-align: left;
  }

  .lightbox__button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightbox__prev {
    left: .7rem;
  }

  .lightbox__next {
    right: .7rem;
  }
}

@media (max-width: 360px) {
  .nav-shell {
    gap: .4rem;
  }

  .site-header .brand {
    gap: .32rem;
    padding-right: .5rem;
    padding-left: .42rem;
  }

  .brand__mark {
    width: 2.25rem;
  }

  .brand__name {
    font-size: .76rem;
    letter-spacing: .055em;
  }

  .nav-cluster {
    padding: 0;
  }

  .menu-toggle__label {
    display: none;
  }
}

@media (hover: none) {
  .ticks {
    opacity: .55;
  }
}

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

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

  .hero__media {
    transform: none;
  }

  .hero__survey-visual {
    opacity: 1;
    transform: none;
  }

  .about__mark-reveal {
    clip-path: inset(0);
  }

  .hero__point-cloud,
  .hero__scan-line,
  .hero__target,
  .about__point-cloud,
  .about__scan-line,
  .about__node {
    animation: none;
  }

  .hero__target {
    opacity: .68;
    transform: scale(1);
  }

  .about__mark--draft {
    opacity: .2;
    transform: translate(-50%, -50%);
  }

  .about__node,
  .about__wordmark {
    opacity: 1;
    transform: none;
  }

  .vertical-mark,
  .heritage__marker.is-visible .vertical-mark {
    transform: none;
  }

  .heritage__figure-media {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 680px) {
  .hero__survey-visual {
    transform: translateX(-50%);
  }
}
