:root {
  --ivory: #f7f5f0;
  --white: #ffffff;
  --charcoal: #252525;
  --muted: #5b5d58;
  --copper: #b66b47;
  --copper-dark: #985638;
  --green: #30483a;
  --green-dark: #20372b;
  --sage: #e8ede8;
  --line: rgb(37 37 37 / 14%);
  --line-light: rgb(255 255 255 / 20%);
  --shadow: 0 18px 42px rgb(21 34 27 / 10%);
  --serif: Georgia, Cambria, "Times New Roman", serif;
  --sans: Aptos, "Segoe UI", Arial, sans-serif;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-space: clamp(3.75rem, 8vw, 6rem);
  --header-height: 6.25rem;
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.75rem);
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.75rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - (2 * var(--gutter)), 780px);
  margin-inline: auto;
}

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

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

.section--sage {
  background: var(--sage);
}

.section--compact {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-heading h1 {
  margin-bottom: 1.15rem;
}

.section-heading p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.section-heading--center p {
  margin-inline: auto;
}

.copper-rule::after,
.section-heading h2::after,
.section-heading h1::after,
.page-title::after {
  display: block;
  width: 3.5rem;
  height: 2px;
  margin-top: 1.2rem;
  background: var(--copper);
  content: "";
}

.section-heading--center h2::after {
  margin-inline: auto;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.75rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--copper);
  color: var(--white);
}

.button--primary:hover {
  background: var(--copper-dark);
}

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

.button--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.button--outline-light {
  border-color: rgb(255 255 255 / 72%);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--copper);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 6px 20px rgb(20 32 25 / 4%);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: 8.7rem;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 1.8rem);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.45rem);
}

.site-nav__link {
  position: relative;
  padding-block: 0.65rem;
  font-size: 0.9rem;
  font-weight: 690;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(700px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(12 21 16 / 82%) 0%, rgb(12 21 16 / 65%) 34%, rgb(12 21 16 / 18%) 68%, transparent 100%);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}

.hero__content {
  max-width: 800px;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 5.3vw, 5rem);
  text-shadow: 0 2px 18px rgb(0 0 0 / 22%);
}

.hero p {
  max-width: 640px;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / 90%);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  min-height: 6.4rem;
  align-items: center;
  gap: 0.8rem;
  border-right: 1px solid var(--line);
  padding: 1.15rem clamp(0.8rem, 2vw, 1.4rem);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 1.7rem;
  min-width: 1.7rem;
  color: var(--copper);
}

.trust-item span {
  font-size: 0.87rem;
  font-weight: 760;
  line-height: 1.3;
}

/* Editorial layouts */
.editorial-split {
  display: grid;
  align-items: center;
  gap: clamp(2.25rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.editorial-split--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.editorial-split--reverse .editorial-split__content {
  order: 2;
}

.editorial-split--reverse .editorial-split__media {
  order: 1;
}

.editorial-split__content h2,
.editorial-split__content h1 {
  margin-bottom: 1.4rem;
}

.editorial-split__content p:last-of-type {
  margin-bottom: 1.8rem;
}

.editorial-split__media {
  position: relative;
}

.editorial-split__media::before {
  position: absolute;
  z-index: 0;
  top: -0.8rem;
  left: -0.8rem;
  width: 56%;
  height: 45%;
  border-top: 2px solid var(--copper);
  border-left: 2px solid var(--copper);
  content: "";
}

.editorial-split__media picture,
.editorial-split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.editorial-split__media img {
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  object-fit: cover;
}

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

.service-feature {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  color: var(--white);
}

.service-feature picture,
.service-feature img,
.service-feature::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-feature img {
  object-fit: cover;
}

.service-feature::after {
  background: linear-gradient(0deg, rgb(17 30 23 / 88%) 0%, rgb(17 30 23 / 46%) 55%, rgb(17 30 23 / 8%) 100%);
  content: "";
}

.service-feature__content {
  position: absolute;
  z-index: 1;
  right: clamp(1.5rem, 5vw, 4.5rem);
  bottom: clamp(2rem, 5vw, 4rem);
  left: clamp(1.5rem, 5vw, 4.5rem);
  max-width: 570px;
}

.service-feature h2 {
  margin-bottom: 1rem;
}

.service-feature p {
  max-width: 520px;
  color: rgb(255 255 255 / 88%);
}

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

.value-item {
  min-height: 17rem;
  border-right: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.value-item:last-child {
  border-right: 0;
}

.value-item__number {
  display: block;
  margin-bottom: 2rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.value-item h3 {
  margin-bottom: 0.8rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0;
}

.value-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.equipment-layout {
  display: grid;
  min-height: 34rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.equipment-layout__media picture,
.equipment-layout__media img {
  width: 100%;
  height: 100%;
}

.equipment-layout__media img {
  object-fit: cover;
}

.equipment-layout__content {
  display: flex;
  align-items: center;
  background: var(--sage);
  padding: clamp(2rem, 6vw, 5rem);
}

.equipment-layout__content > div {
  max-width: 490px;
}

.equipment-layout__content h2 {
  margin-bottom: 1.25rem;
}

.project-preview {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.75fr 1fr 1fr;
  grid-template-rows: repeat(2, 13rem);
}

.project-preview figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

.project-preview figure:first-child {
  grid-row: 1 / 3;
}

.project-preview figure:nth-child(2) {
  grid-column: 2 / 4;
}

.project-preview picture,
.project-preview img {
  width: 100%;
  height: 100%;
}

.project-preview img {
  object-fit: cover;
  transition: transform 360ms ease;
}

.project-preview figure:hover img {
  transform: scale(1.025);
}

.project-preview figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(0deg, rgb(17 30 23 / 80%), transparent);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 720;
}

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

.process-step {
  display: grid;
  gap: 1rem;
  border-right: 1px solid var(--line);
  padding: 2rem clamp(1.1rem, 2.5vw, 2rem);
  grid-template-columns: auto 1fr;
}

.process-step:last-child {
  border-right: 0;
}

.process-step__number {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing-cta {
  background: var(--green);
  color: var(--white);
}

.closing-cta__inner {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.closing-cta h2 {
  max-width: 760px;
  margin-bottom: 0.9rem;
}

.closing-cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
}

/* Inner page heroes */
.page-hero {
  overflow: hidden;
  background: var(--white);
}

.page-hero__grid {
  display: grid;
  min-height: 38rem;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

@media (min-width: 901px) {
  .page-hero--domestic .page-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-hero__content {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding-right: clamp(2rem, 5vw, 5rem);
}

.page-hero__content > div {
  max-width: 580px;
}

.page-hero h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero p {
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.page-hero__media picture,
.page-hero__media img {
  width: 100%;
  height: 100%;
}

.page-hero__media img {
  min-height: 38rem;
  object-fit: cover;
}

.image-hero {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

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

.image-hero img {
  object-fit: cover;
}

.image-hero::after {
  background: linear-gradient(90deg, rgb(15 26 20 / 78%), rgb(15 26 20 / 42%) 55%, rgb(15 26 20 / 8%));
  content: "";
}

.image-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.image-hero__content > div {
  max-width: 780px;
}

.image-hero h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.5vw, 5.7rem);
}

.image-hero h2 {
  max-width: 22ch;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: rgb(255 255 255 / 88%);
}

.service-list {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-list__item {
  position: relative;
  min-height: 4.9rem;
  border-bottom: 1px solid var(--line);
  padding: 1.45rem 1.5rem 1.35rem 2.75rem;
  font-weight: 690;
}

.service-list__item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-list__item::before {
  position: absolute;
  left: 1rem;
  color: var(--copper);
  content: "✓";
  font-weight: 800;
}

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

.principle-row {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-block: 1.35rem;
  grid-template-columns: 3rem 1fr;
}

.principle-row__mark {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.principle-row h3 {
  margin-bottom: 0.4rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0;
}

.principle-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.suitability-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.suitability-grid li {
  list-style: none;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 1.1rem 1.1rem 2.2rem;
}

.suitability-grid li::before {
  margin-left: -1.2rem;
  margin-right: 0.65rem;
  color: var(--copper);
  content: "—";
}

.values-five {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-five article {
  border-right: 1px solid var(--line);
  padding: 2rem 1.3rem;
  text-align: center;
}

.values-five article:last-child {
  border-right: 0;
}

.values-five__mark {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.values-five h3 {
  min-height: 2.5em;
  margin-bottom: 0.7rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: 0;
}

.values-five p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Gallery */
.gallery-header {
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  background: var(--white);
}

.gallery-header h1 {
  margin-bottom: 1.1rem;
}

.gallery-header p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.filter-button {
  min-height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 720;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  margin: 0;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item__button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: var(--sage);
  padding: 0;
  text-align: left;
}

.gallery-item:nth-child(3n + 1) .gallery-item__button img {
  aspect-ratio: 4 / 3;
}

.gallery-item:nth-child(3n + 2) .gallery-item__button img {
  aspect-ratio: 16 / 10;
}

.gallery-item:nth-child(3n) .gallery-item__button img {
  aspect-ratio: 3 / 2;
}

.gallery-item__button picture,
.gallery-item__button img {
  width: 100%;
}

.gallery-item__button img {
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery-item__button::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  background: var(--copper);
  color: var(--white);
  content: "+";
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

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

.gallery-item figcaption {
  padding-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lightbox {
  width: min(94vw, 1180px);
  max-height: 92vh;
  border: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 0;
  box-shadow: 0 30px 90px rgb(0 0 0 / 45%);
}

.lightbox::backdrop {
  background: rgb(8 14 10 / 82%);
}

.lightbox__figure {
  display: grid;
  height: min(82vh, 800px);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox__media {
  min-height: 0;
  background: #111;
}

.lightbox__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__caption {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 1rem 5rem 1rem 1.3rem;
}

.lightbox__title {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.lightbox__description {
  color: rgb(255 255 255 / 72%);
  font-size: 0.9rem;
}

.lightbox__close,
.lightbox__control {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 45%);
  background: rgb(20 32 25 / 72%);
  color: var(--white);
  font-size: 1.5rem;
}

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

.lightbox__control {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__control--prev {
  left: 0.8rem;
}

.lightbox__control--next {
  right: 0.8rem;
}

/* Contact form */
.contact-layout {
  display: grid;
  min-height: 48rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
}

.contact-main {
  padding: clamp(3.5rem, 7vw, 6rem) max(var(--gutter), calc((100vw - var(--container)) / 2));
  padding-right: clamp(2rem, 6vw, 5rem);
  background: var(--white);
}

.contact-main__inner {
  max-width: 790px;
}

.contact-main h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.contact-main__intro {
  max-width: 650px;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-aside {
  display: flex;
  align-items: center;
  background: var(--green);
  color: var(--white);
  padding: clamp(3rem, 7vw, 6rem);
}

.contact-aside > div {
  max-width: 390px;
}

.contact-aside h2 {
  margin-bottom: 2rem;
}

.contact-aside a {
  color: var(--white);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.contact-detail svg {
  width: 1.4rem;
  min-width: 1.4rem;
  margin-top: 0.2rem;
  color: var(--copper);
}

.privacy-note {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-light);
  padding-top: 2rem;
}

.privacy-note h3 {
  margin-bottom: 0.8rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0;
}

.privacy-note p {
  color: rgb(255 255 255 / 74%);
  font-size: 0.92rem;
}

.quote-form {
  display: grid;
  gap: 1.3rem;
}

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

.field,
.fieldset {
  min-width: 0;
}

.field--full,
.fieldset--full {
  grid-column: 1 / -1;
}

.field label,
.fieldset legend {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.9rem;
  font-weight: 760;
}

.required {
  color: var(--copper-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid #8b8d88;
  border-radius: 2px;
  background: var(--white);
  padding: 0.68rem 0.8rem;
  font-size: 1rem;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--copper-dark);
  outline: 3px solid rgb(182 107 71 / 22%);
  outline-offset: 0;
}

.fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

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

.choice {
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--line);
  padding: 0.65rem 0.8rem;
}

.choice input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--copper);
}

.consent {
  display: grid;
  align-items: start;
  gap: 0.8rem;
  grid-template-columns: auto 1fr;
  font-size: 0.9rem;
}

.consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  accent-color: var(--copper);
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Privacy */
.privacy-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
}

.policy-article h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.policy-article h2:first-child {
  margin-top: 0;
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  background: var(--sage);
  padding: 2rem;
}

.policy-nav h2 {
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
}

.policy-nav ol {
  margin: 0;
  padding-left: 1.35rem;
}

.policy-nav li {
  border-bottom: 1px solid var(--line);
  padding-block: 0.7rem;
}

.policy-nav a {
  font-size: 0.9rem;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--copper-dark);
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 5rem);
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  width: 11rem;
  margin-bottom: 1.4rem;
  background: var(--ivory);
  padding: 0.5rem;
}

.footer-brand p,
.footer-contact p {
  color: rgb(255 255 255 / 72%);
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 1.1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 760;
  letter-spacing: 0;
}

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

.footer-column li + li {
  margin-top: 0.55rem;
}

.footer-column a {
  color: rgb(255 255 255 / 78%);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line-light);
  padding-block: 1.25rem;
  color: rgb(255 255 255 / 62%);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

/* Utility and motion */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .value-item:nth-child(2) {
    border-right: 0;
  }

  .value-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .values-five article:nth-child(3) {
    border-right: 0;
  }

  .values-five article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 5.4rem;
  }

  .brand {
    width: 7.3rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-y: auto;
    background: var(--white);
    padding: 2rem var(--gutter) 3rem;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__link {
    border-bottom: 1px solid var(--line);
    padding-block: 1rem;
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero {
    min-height: 42rem;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .editorial-split,
  .editorial-split--reverse {
    grid-template-columns: 1fr;
  }

  .editorial-split--reverse .editorial-split__content,
  .editorial-split--reverse .editorial-split__media {
    order: initial;
  }

  .service-pair,
  .equipment-layout,
  .page-hero__grid,
  .contact-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .equipment-layout__media {
    min-height: 28rem;
  }

  .project-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 14rem);
  }

  .project-preview figure:first-child {
    grid-row: auto;
  }

  .project-preview figure:nth-child(2) {
    grid-column: auto;
  }

  .closing-cta__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__content {
    padding: 4rem var(--gutter);
  }

  .page-hero__media img {
    min-height: 30rem;
  }

  .contact-main {
    padding: 4rem var(--gutter);
  }

  .contact-aside {
    padding: 4rem var(--gutter);
  }

  .policy-nav {
    position: static;
    grid-row: 1;
  }

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

@media (max-width: 640px) {
  .hero__media img {
    object-position: 62% center;
  }

  .hero__media::after {
    background: linear-gradient(0deg, rgb(12 21 16 / 86%) 0%, rgb(12 21 16 / 67%) 62%, rgb(12 21 16 / 28%) 100%);
  }

  .hero__inner {
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-strip__grid,
  .service-pair,
  .value-grid,
  .process-grid,
  .service-list,
  .suitability-grid,
  .values-five,
  .gallery-grid,
  .form-grid,
  .choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .value-item,
  .value-item:nth-child(2),
  .process-step,
  .process-step:nth-child(2),
  .values-five article,
  .values-five article:nth-child(3) {
    border-right: 0;
  }

  .trust-item:not(:last-child),
  .value-item:not(:last-child),
  .process-step:not(:last-child),
  .values-five article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .service-feature {
    min-height: 31rem;
  }

  .equipment-layout__media {
    min-height: 21rem;
  }

  .project-preview {
    display: flex;
    flex-direction: column;
  }

  .project-preview figure {
    min-height: 17rem;
  }

  .service-list__item:nth-child(odd) {
    border-right: 0;
  }

  .values-five h3 {
    min-height: 0;
  }

  .gallery-item__button img {
    aspect-ratio: 4 / 3 !important;
  }

  .lightbox {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
  }

  .lightbox__figure {
    height: 100vh;
  }

  .lightbox__caption {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 1rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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