:root {
  --forest-950: #061f15;
  --forest-900: #083828;
  --forest-800: #184838;
  --forest-700: #245a43;
  --lime: #b4cc54;
  --lime-dark: #93aa38;
  --paper: #f2f0e7;
  --paper-deep: #e5e5d9;
  --surface: #fbfaf4;
  --white: #ffffff;
  --ink: #142019;
  --muted: #5f695f;
  --line: rgba(20, 32, 25, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 26px 70px rgba(6, 31, 21, 0.18);
  --header-height: 88px;
  --content: 1440px;
  --wide: 1680px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  object-position: center;
}

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

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

button {
  border: 0;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: "Archivo", "Arial Narrow", sans-serif;
  font-weight: 800;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.6vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--forest-950);
  background: var(--lime);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--forest-950);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(242, 240, 231, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: height 260ms var(--ease-out), box-shadow 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(251, 250, 244, 0.98);
  box-shadow: 0 12px 38px rgba(6, 31, 21, 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  width: min(100%, var(--wide));
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 48px);
}

.brand {
  display: block;
  width: 156px;
  height: 72px;
  overflow: hidden;
 /* background: var(--forest-900);*/
  transition: width 260ms var(--ease-out), height 260ms var(--ease-out), transform 220ms ease;
}

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

.is-scrolled .brand {
  width: 136px;
  height: 62px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: stretch;
  gap: clamp(14px, 1.8vw, 30px);
}

.site-nav > a {
  position: relative;
  padding: 8px 0;
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--lime-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.nav-phone {
  display: grid;
  gap: 1px;
  line-height: 1.25;
}

.nav-phone span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-phone strong {
  font-family: "Archivo", sans-serif;
  font-size: 0.88rem;
}

.nav-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--forest-950);
  background: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-estimate:hover {
  color: var(--white);
  background: var(--forest-900);
  transform: translateY(-2px);
}

.lang-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.lang-toggle:hover {
  color: var(--white);
  background: var(--forest-900);
  border-color: var(--forest-900);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 240ms var(--ease-out), top 240ms var(--ease-out);
}

.nav-toggle > span:first-child {
  top: 17px;
}

.nav-toggle > span:nth-child(2) {
  top: 25px;
}

.nav-toggle[aria-expanded="true"] > span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.button,
.form-submit,
.estimate-banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 16px 24px;
  font-family: "Archivo", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms var(--ease-out);
}

.button:hover,
.form-submit:hover,
.estimate-banner-action:hover {
  transform: translateY(-3px);
}

.button:active,
.form-submit:active,
.estimate-banner-action:active {
  transform: translateY(1px);
}

.button-accent {
  color: var(--forest-950);
  background: var(--lime);
  border: 1px solid var(--lime);
}

.button-accent:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}

.button-light {
  color: var(--forest-950);
  background: var(--surface);
  border: 1px solid var(--surface);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.text-action,
.line-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.text-action {
  color: rgba(255, 255, 255, 0.9);
}

.text-action i {
  color: var(--lime);
  font-size: 1.25rem;
}

.line-link {
  min-width: 230px;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  transition: color 220ms ease, border-color 220ms ease, padding 220ms var(--ease-out);
}

.line-link:hover {
  color: var(--forest-700);
  padding-left: 10px;
  border-color: var(--lime-dark);
}

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

.line-link-light:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--forest-800);
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  min-height: calc(100dvh - var(--header-height));
  color: var(--white);
  background: var(--forest-900);
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50% 0 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 80%, transparent);
}

.home-hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 138px) clamp(28px, 5.5vw, 96px) clamp(62px, 7vw, 110px) max(28px, calc((100vw - var(--wide)) / 2 + 48px));
}

.home-hero h1 {
  max-width: 8.6ch;
  margin-bottom: 28px;
  font-size: clamp(4.8rem, 7.8vw, 8.9rem);
}

.hero-lead {
  max-width: 52ch;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(48px, 6vw, 84px) 0 0;
  border-top: 1px solid var(--line-light);
}

.hero-facts > div {
  padding: 22px 18px 0 0;
}

.hero-facts > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line-light);
}

.hero-facts dt {
  color: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.hero-facts dd {
  max-width: 18ch;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.home-hero-media {
  position: relative;
  min-width: 0;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-950);
}

.home-hero-media::after,
.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 31, 21, 0.64));
  pointer-events: none;
}

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

.home-hero-media:hover img,
.inner-hero-media:hover img {
  transform: scale(1.025);
}

.home-hero-media figcaption,
.inner-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 8px;
  width: min(480px, 72%);
  padding: 24px 28px;
  color: var(--forest-950);
  background: var(--lime);
}

.home-hero-media figcaption span,
.inner-hero-media figcaption span {
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-hero-media figcaption strong,
.inner-hero-media figcaption strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.1;
}

.scroll-marker {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-marker i {
  color: var(--lime);
  animation: scroll-nudge 1.8s ease-in-out infinite;
}

@keyframes scroll-nudge {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.content-section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 156px) clamp(20px, 3.3vw, 52px);
}

.section-topline {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(42px, 6vw, 82px);
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.section-topline > span,
.section-topline > p,
.section-topline > a {
  margin: 0;
}

.section-topline > span,
.section-topline > p {
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-topline > span {
  color: var(--forest-700);
}

.section-topline-light {
  border-color: var(--line-light);
}

.section-topline-light > span,
.section-topline-light > p {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(44px, 8vw, 128px);
  margin-bottom: clamp(58px, 8vw, 106px);
}

.section-heading-split h2 {
  max-width: 13ch;
  margin: 0;
}

.section-heading-split p {
  max-width: 52ch;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

.services-editorial {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: stretch;
}

.services-photo {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-950);
}

.services-photo img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.services-photo:hover img {
  transform: scale(1.035);
}

.services-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 26px;
  color: var(--white);
  background: rgba(6, 31, 21, 0.88);
  border-top: 1px solid var(--line-light);
  font-size: 0.86rem;
}

.service-index {
  border-top: 1px solid var(--line);
}

.service-index article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 48px;
  align-items: start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color 280ms ease, background 280ms ease, padding 280ms var(--ease-out);
}

.service-index article:hover {
  padding-right: 20px;
  padding-left: 20px;
  color: var(--white);
  background: var(--forest-900);
}

.service-index article > span {
  color: var(--forest-700);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-index article:hover > span,
.service-index article:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.service-index h3 {
  margin-bottom: 8px;
}

.service-index p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-index article > a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-index article > a:hover {
  color: var(--forest-950);
  background: var(--lime);
  transform: translateX(4px);
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  width: min(100%, var(--wide));
  min-height: 820px;
  margin: 0 auto;
  color: var(--white);
  background: var(--forest-900);
}

.home-about-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.home-about-media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.media-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  color: var(--forest-950);
  background: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 128px) clamp(34px, 6vw, 98px);
}

.home-about-copy h2 {
  max-width: 10ch;
}

.home-about-copy > p {
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.7);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 38px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.about-facts > div {
  padding: 24px 15px 26px 0;
}

.about-facts > div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line-light);
}

.about-facts dt {
  color: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.about-facts dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  line-height: 1.45;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.process-layout h2 {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  max-width: 8ch;
}

.process-layout ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-layout li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 240ms var(--ease-out), background 240ms ease;
}

.process-layout li:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: var(--paper-deep);
}

.process-layout li > span {
  color: var(--forest-700);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.process-layout strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.08;
}

.process-layout li p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.home-proof {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 118px);
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 156px) max(20px, calc((100vw - var(--wide)) / 2 + 52px));
  color: var(--white);
  background: var(--forest-950);
}

.home-proof-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.home-proof-copy h2 {
  max-width: 8ch;
}

.home-proof-copy > p {
  max-width: 46ch;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.64);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-gallery figure {
  min-height: 300px;
  margin: 0;
  overflow: hidden;
}

.proof-gallery .proof-tall {
  grid-row: span 2;
  min-height: 620px;
}

.proof-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 620ms var(--ease-out), filter 380ms ease;
}

.proof-gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.home-local {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: center;
}

.local-copy h2 {
  max-width: 9ch;
}

.local-copy > p {
  max-width: 48ch;
  color: var(--muted);
}

.local-copy address {
  display: grid;
  gap: 7px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.local-copy address strong {
  font-family: "Archivo", sans-serif;
}

.local-copy address a:hover {
  color: var(--forest-700);
  text-decoration: underline;
}

.map-frame {
  position: relative;
  min-height: 560px;
  padding: 14px;
  background: var(--forest-900);
}

.map-frame iframe {
  width: 100%;
  min-height: 532px;
  border: 0;
  filter: grayscale(0.25) contrast(1.03);
}

.map-frame > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 15px;
  color: var(--forest-950);
  background: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.estimate-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto clamp(88px, 10vw, 150px);
  padding: clamp(48px, 6vw, 86px);
  color: var(--forest-950);
  background: var(--lime);
}

.estimate-banner h2 {
  max-width: 12ch;
  margin-bottom: 12px;
}

.estimate-banner p:last-child {
  max-width: 52ch;
  margin-bottom: 0;
}

.estimate-banner-action {
  color: var(--white);
  background: var(--forest-950);
  border: 1px solid var(--forest-950);
}

.estimate-banner-action:hover {
  color: var(--forest-950);
  background: transparent;
}

.inner-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  width: min(100%, var(--wide));
  min-height: clamp(720px, calc(100svh - var(--header-height)), 900px);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.inner-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 96px 100%;
  mask-image: linear-gradient(90deg, black, transparent 64%);
  pointer-events: none;
}

.inner-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: clamp(150px, 19vw, 340px);
  height: 6px;
  background: var(--lime);
  pointer-events: none;
}

.inner-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  width: min(100%, 980px);
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(42px, 5vw, 76px) clamp(28px, 5vw, 82px) clamp(58px, 6vw, 92px) max(28px, calc((100vw - var(--content)) / 2 + 52px));
}

.hero-index {
  width: min(100%, 720px);
  margin-bottom: auto;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line-light);
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inner-hero .eyebrow {
  width: fit-content;
  margin-bottom: 20px;
}

.inner-hero h1 {
  width: min(100%, 9.4em);
  max-width: none;
  margin-bottom: 26px;
  font-size: clamp(4.4rem, 6.3vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: none;
  text-wrap: balance;
  word-break: normal;
  hyphens: none;
}

.inner-hero h1 + p {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.inner-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--forest-950);
}

.inner-hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 31, 21, 0.98) 0%, rgba(6, 31, 21, 0.92) 30%, rgba(6, 31, 21, 0.7) 49%, rgba(6, 31, 21, 0.18) 76%, rgba(6, 31, 21, 0.06) 100%),
    linear-gradient(180deg, rgba(6, 31, 21, 0.12) 45%, rgba(6, 31, 21, 0.68) 100%);
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.inner-hero-media figcaption {
  right: clamp(22px, 3.5vw, 58px);
  bottom: clamp(94px, 7vw, 118px);
  width: min(360px, 34vw);
  padding: 18px 22px;
  background: rgba(242, 240, 231, 0.94);
  border-left: 4px solid var(--lime);
  backdrop-filter: blur(12px);
}

.inner-hero-media figcaption span {
  color: var(--forest-700);
}

.inner-hero-media figcaption strong {
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.about-hero .inner-hero-media img {
  object-position: 66% center;
}

.services-hero .inner-hero-media img {
  object-position: 60% center;
}

.work-hero .inner-hero-media img {
  object-position: center 52%;
}

.resources-hero .inner-hero-media img {
  object-position: center 55%;
}

.contact-hero .inner-hero-media img {
  object-position: 64% center;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.story-media > span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  color: var(--forest-950);
  background: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.story-copy h2 {
  max-width: 9ch;
}

.story-copy > p {
  max-width: 56ch;
  color: var(--muted);
}

.story-copy .line-link {
  margin-top: 22px;
}

.values-section {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 148px) max(20px, calc((100vw - var(--wide)) / 2 + 52px));
  color: var(--white);
  background: var(--forest-950);
}

.values-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.values-intro .section-topline {
  grid-template-columns: 54px 1fr;
  margin: 0;
}

.values-intro h2 {
  max-width: 10ch;
  margin: 0;
}

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

.values-grid article {
  min-height: 360px;
  padding: 30px clamp(22px, 3vw, 44px) 40px;
}

.values-grid article + article {
  border-left: 1px solid var(--line-light);
}

.values-grid article:nth-child(2) {
  color: var(--forest-950);
  background: var(--lime);
}

.values-grid article > span {
  display: block;
  margin-bottom: clamp(82px, 10vw, 140px);
  color: rgba(255, 255, 255, 0.56);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.values-grid article:nth-child(2) > span {
  color: rgba(6, 31, 21, 0.56);
}

.values-grid h3 {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
}

.values-grid p {
  max-width: 36ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.values-grid article:nth-child(2) p {
  color: rgba(6, 31, 21, 0.72);
}

.principle-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1.64fr);
  align-items: center;
  width: min(calc(100% - 40px), var(--content));
  margin: clamp(84px, 10vw, 150px) auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.principle-band img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  background: var(--forest-900);
}

.principle-band > div {
  padding: clamp(42px, 7vw, 94px);
}

.principle-band span {
  color: var(--forest-700);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principle-band blockquote {
  margin: 18px 0 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.service-ticker {
  overflow: hidden;
  color: var(--forest-950);
  background: var(--lime);
  border-top: 1px solid var(--forest-950);
  border-bottom: 1px solid var(--forest-950);
}

.service-ticker > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: max-content;
  padding: 18px 24px;
  font-family: "Archivo", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-ticker i {
  width: 5px;
  height: 5px;
  background: var(--forest-950);
  transform: rotate(45deg);
}

.services-list {
  counter-reset: service-category;
  width: min(100%, var(--wide));
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 110px minmax(340px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  min-height: 680px;
  padding: clamp(70px, 8vw, 124px) max(20px, calc((100vw - var(--wide)) / 2 + 52px));
  border-bottom: 1px solid var(--line);
}

.service-row-dark {
  color: var(--white);
  background: var(--forest-900);
  border-color: var(--line-light);
}

.service-row-index {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
  border-right: 1px solid var(--line);
}

.service-row-dark .service-row-index {
  border-color: var(--line-light);
}

.service-row-index > span {
  color: var(--forest-700);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.service-row-dark .service-row-index > span {
  color: var(--lime);
}

.service-row-index small {
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.service-row-dark .service-row-index small {
  color: rgba(255, 255, 255, 0.58);
}

.service-row figure {
  align-self: center;
  height: 560px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--forest-950);
}

.service-row figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 680ms var(--ease-out);
}

.service-row figure:hover img {
  transform: scale(1.04);
}

.service-row-portrait img {
  object-position: center 58%;
}

.service-row-copy {
  align-self: center;
  padding: 20px 0;
}

.service-row-copy h2 {
  max-width: 10ch;
}

.service-row-copy > p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
}

.service-row-dark .service-row-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.service-row-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 36px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-row-copy li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-row-copy li:nth-child(odd) {
  padding-right: 16px;
}

.service-row-copy li:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.service-row-dark .service-row-copy ul,
.service-row-dark .service-row-copy li {
  border-color: var(--line-light);
}

.project-feature-heading,
.guide-intro-copy,
.video-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 106px);
}

.project-feature-heading h2,
.guide-intro-copy h2,
.video-heading h2 {
  margin: 0;
}

.project-feature-heading p,
.guide-intro-copy p,
.video-heading p {
  max-width: 50ch;
  margin: 0 0 8px;
  color: var(--muted);
}

.work-page .project-feature {
  padding-top: clamp(76px, 8vw, 120px);
  padding-bottom: clamp(88px, 9vw, 136px);
}

.work-page .project-feature > .section-topline {
  margin-bottom: clamp(34px, 4vw, 52px);
}

.work-page .project-feature-heading {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: clamp(48px, 5vw, 72px);
}

.work-page .project-feature-heading h2 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.92;
}

.work-page .project-feature-heading > p {
  max-width: 44ch;
  margin-bottom: 4px;
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--lime);
}

.featured-work {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.featured-work article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  transition: border-color 260ms ease;
}

.featured-work article:nth-child(2) {
  margin-top: 0;
}

.featured-work article:hover {
  border-color: var(--lime-dark);
}

.featured-work figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest-900);
}

.featured-work figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 680ms var(--ease-out);
}

.featured-work article:nth-child(2) figure img {
  aspect-ratio: 16 / 10;
  object-position: center 54%;
}

.featured-work figure:hover img {
  transform: scale(1.04);
}

.featured-work figure > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 13px 10px 16px;
  color: var(--white);
  background: rgba(6, 31, 21, 0.92);
  border-left: 3px solid var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-work article > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
  gap: 12px clamp(22px, 2.2vw, 34px);
  align-items: start;
  flex: 1;
  padding: clamp(24px, 2.4vw, 36px) 0 clamp(26px, 3vw, 42px);
}

.featured-work article > div .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.featured-work h3 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  line-height: 1;
}

.featured-work p:last-child {
  max-width: 56ch;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.project-gallery-section {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 154px) max(20px, calc((100vw - var(--wide)) / 2 + 52px));
  color: var(--white);
  background: var(--forest-950);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.42fr);
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 100px);
}

.gallery-heading span {
  color: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-heading h2 {
  margin: 12px 0 0;
}

.gallery-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-900);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
  grid-column: span 8;
  min-height: 500px;
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(7) {
  grid-column: span 5;
}

.gallery-grid figure:nth-child(5),
.gallery-grid figure:nth-child(8) {
  grid-column: span 7;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 620ms var(--ease-out), filter 360ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 13px;
  color: var(--forest-950);
  background: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  background: var(--forest-950);
  box-shadow: var(--shadow);
}

.guide-intro {
  padding-bottom: clamp(56px, 7vw, 96px);
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 16px 36px;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto clamp(88px, 10vw, 150px);
}

.resource-grid article {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.resource-grid .resource-featured {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.resource-grid figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
}

.resource-grid .resource-featured figure {
  min-height: 560px;
}

.resource-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 620ms var(--ease-out);
}

.resource-grid article:hover img {
  transform: scale(1.04);
}

.resource-grid figure > span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 13px;
  color: var(--white);
  background: var(--forest-900);
  font-family: "Archivo", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-grid article > div {
  padding: clamp(26px, 3.5vw, 48px);
}

.resource-grid h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.6vw, 4.2rem);
}

.resource-grid article:not(.resource-featured) h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
}

.resource-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 140px);
  width: min(100%, var(--wide));
  margin: 0 auto clamp(88px, 10vw, 150px);
  padding: clamp(88px, 10vw, 150px) max(20px, calc((100vw - var(--wide)) / 2 + 52px));
  color: var(--white);
  background: var(--forest-900);
}

.checklist-heading h2 {
  max-width: 9ch;
}

.checklist-heading > p {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.62);
}

.checklist-section ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.checklist-section li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 108px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 240ms ease, background 240ms ease, padding 240ms var(--ease-out);
}

.checklist-section li:hover {
  padding-right: 20px;
  padding-left: 20px;
  color: var(--forest-950);
  background: var(--lime);
}

.checklist-section li > span {
  color: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.checklist-section li:hover > span {
  color: var(--forest-700);
}

.checklist-section li p {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

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

.contact-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-light);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-hero-actions i {
  color: var(--lime);
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  width: min(calc(100% - 40px), var(--content));
  margin: clamp(88px, 10vw, 150px) auto;
  box-shadow: var(--shadow);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  min-height: 760px;
  padding: clamp(42px, 5vw, 74px);
  color: var(--white);
  background: var(--forest-900);
}

.contact-panel-heading > span,
.form-heading > span {
  display: block;
  margin-bottom: 24px;
  color: var(--lime);
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel h2,
.estimate-form h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.8vw, 5.4rem);
}

.contact-methods {
  margin-top: 28px;
  border-top: 1px solid var(--line-light);
}

.contact-methods a {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-methods span,
.contact-panel address span {
  color: rgba(255, 255, 255, 0.54);
  font-family: "Archivo", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-family: "Archivo", sans-serif;
  font-size: 0.86rem;
}

.contact-methods a:hover i {
  color: var(--lime);
  transform: translateX(3px);
}

.contact-methods i {
  transition: color 200ms ease, transform 200ms ease;
}

.contact-panel address {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 36px;
}

.contact-panel address strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.contact-social-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.contact-social-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  font-size: 0.72rem;
  font-weight: 700;
  transition: color 200ms ease, background 200ms ease;
}

.contact-social-row a:hover {
  color: var(--forest-950);
  background: var(--lime);
}

.estimate-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 92px);
  background: var(--surface);
}

.form-heading > span {
  color: var(--forest-700);
}

.form-heading > p {
  max-width: 54ch;
  margin-bottom: 34px;
  color: var(--muted);
}

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

.field-group {
  display: grid;
  gap: 8px;
}

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

.field-group label {
  font-family: "Archivo", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  transition: border-color 200ms ease, background 200ms ease, padding 200ms ease;
}

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

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--paper);
  border-color: var(--forest-700);
}

.field-group input.is-invalid,
.field-group select.is-invalid,
.field-group textarea.is-invalid {
  border-color: #a33b2d;
  background: rgba(163, 59, 45, 0.06);
}

.field-error {
  color: #8e2f23;
  font-size: 0.76rem;
  font-weight: 700;
}

.form-submit {
  align-self: flex-start;
  margin-top: 34px;
  color: var(--white);
  background: var(--forest-900);
  border: 1px solid var(--forest-900);
}

.form-submit:hover {
  color: var(--forest-950);
  background: var(--lime);
  border-color: var(--lime);
}

.form-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: var(--forest-900);
  background: rgba(180, 204, 84, 0.22);
  border-left: 3px solid var(--lime-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-map {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: center;
}

.contact-map h2 {
  max-width: 9ch;
}

.contact-map > div:first-child > p:not(.section-topline p) {
  max-width: 48ch;
  color: var(--muted);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.area-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-footer {
  color: var(--white);
  background: var(--forest-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(160px, 0.5fr) minmax(300px, 0.9fr);
  gap: clamp(48px, 8vw, 130px);
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 136px) max(20px, calc((100vw - var(--wide)) / 2 + 52px));
}

.footer-brand img {
  width: 210px;
  height: 126px;
  object-fit: contain;
  background: #fff;
}

.footer-brand > p {
  margin: 28px 0 8px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.footer-brand > span {
  display: block;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 4px;
}

.footer-nav a {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid var(--line-light);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 200ms ease, padding 200ms ease;
}

.footer-nav a:hover {
  padding-left: 8px;
  color: var(--lime);
}

.footer-cta {
  align-self: start;
}

.footer-cta > p {
  max-width: 16ch;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-cta > a:not(.footer-email) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  color: var(--lime);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}

.footer-cta > a i {
  font-size: 0.9rem;
}

.footer-email {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: 24px max(20px, calc((100vw - var(--wide)) / 2 + 52px));
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid var(--line-light);
  font-size: 0.7rem;
}

.footer-bottom p {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 6px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  border: 1px solid var(--line-light);
  transition: color 200ms ease, background 200ms ease;
}

.footer-socials a:hover {
  color: var(--forest-950);
  background: var(--lime);
}

.quick-contact {
  position: fixed;
  z-index: 90;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 18px;
  color: var(--forest-950);
  background: var(--lime);
  border: 1px solid rgba(6, 31, 21, 0.26);
  box-shadow: 0 18px 48px rgba(6, 31, 21, 0.24);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: quick-contact-in 600ms var(--ease-out) 700ms forwards;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.quick-contact i {
  font-size: 1.35rem;
}

.quick-contact:hover {
  color: var(--white);
  background: var(--forest-900);
  transform: translateY(-3px);
}

@keyframes quick-contact-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="hero"] {
  transform: translate3d(-34px, 0, 0);
}

.motion-ready [data-reveal="media"] {
  opacity: 0;
  transform: none;
  transition: opacity 760ms var(--ease-out);
}

.motion-ready [data-reveal="media"] img {
  transform: scale(1.035);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready [data-reveal="media"].is-visible {
  opacity: 1;
}

.motion-ready [data-reveal="media"].is-visible img {
  transform: scale(1);
}

.motion-ready [data-reveal="media"].is-visible:hover img {
  transform: scale(1.025);
}

.motion-ready [data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.motion-ready [data-stagger].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready [data-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
.motion-ready [data-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
.motion-ready [data-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }
.motion-ready [data-stagger].is-visible > *:nth-child(5) { transition-delay: 360ms; }
.motion-ready [data-stagger].is-visible > *:nth-child(6) { transition-delay: 450ms; }
.motion-ready [data-stagger].is-visible > *:nth-child(7) { transition-delay: 540ms; }
.motion-ready [data-stagger].is-visible > *:nth-child(8) { transition-delay: 630ms; }

@media (max-width: 1320px) {
  .site-nav {
    gap: 18px;
  }

  .nav-phone {
    display: none;
  }

  .nav-contact {
    padding-left: 18px;
  }

  .home-hero-copy {
    padding-right: 48px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    background: var(--surface);
    backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .brand,
  .is-scrolled .brand {
    width: 136px;
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 44px clamp(22px, 7vw, 72px) max(36px, env(safe-area-inset-bottom));
    color: var(--white);
    background: var(--forest-900);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    transition: opacity 280ms ease, transform 280ms var(--ease-out), visibility 280ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(1.55rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav > a::after {
    right: auto;
    width: 70px;
    background: var(--lime);
  }

  .nav-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 34px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .nav-phone {
    display: grid;
    padding: 12px 14px;
    border: 1px solid var(--line-light);
  }

  .nav-phone span {
    color: rgba(255, 255, 255, 0.55);
  }

  .nav-estimate {
    min-height: 58px;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    min-height: 690px;
    padding: 90px clamp(24px, 7vw, 72px) 82px;
  }

  .home-hero h1 {
    max-width: 9ch;
    font-size: clamp(4.6rem, 12vw, 8.4rem);
  }

  .home-hero-media {
    min-height: 620px;
  }

  .home-hero-media img {
    min-height: 620px;
  }

  .scroll-marker {
    display: none;
  }

  .section-heading-split,
  .project-feature-heading,
  .guide-intro-copy,
  .video-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-page .project-feature-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .work-page .project-feature-heading > p {
    max-width: 58ch;
  }

  .services-editorial {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
  }

  .home-about,
  .home-proof {
    grid-template-columns: 1fr;
  }

  .home-about-media,
  .home-about-media img {
    min-height: 580px;
  }

  .home-proof-copy {
    position: static;
  }

  .process-layout,
  .home-local,
  .story-section,
  .contact-map {
    grid-template-columns: 1fr;
  }

  .process-layout h2 {
    position: static;
  }

  .inner-hero-copy {
    width: min(100%, 900px);
    min-height: inherit;
    padding: 48px clamp(24px, 7vw, 72px) 64px;
  }

  .inner-hero h1 {
    width: min(100%, 8.8em);
    max-width: none;
    font-size: clamp(4rem, 9vw, 6.5rem);
  }

  .story-media,
  .story-media img {
    min-height: 580px;
  }

  .values-intro {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 80px minmax(280px, 0.82fr) minmax(320px, 1.18fr);
    gap: 32px;
  }

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

  .featured-work article > div {
    grid-template-columns: 1fr;
  }

  .resource-grid article {
    grid-template-columns: 1fr;
  }

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

  .contact-panel {
    min-height: auto;
  }

  .contact-panel address {
    margin-top: 44px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.65fr;
  }

  .footer-cta {
    grid-column: 1 / -1;
    max-width: 700px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(3.7rem, 14vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.6rem, 11vw, 5rem);
  }

  .inner-hero {
    min-height: 760px;
  }

  .inner-hero-copy {
    width: 100%;
    min-height: 760px;
    padding: 36px clamp(20px, 6vw, 44px) 52px;
  }

  .inner-hero h1 {
    width: min(100%, 9em);
    font-size: clamp(3.7rem, 11vw, 5.7rem);
  }

  .inner-hero-media::after {
    background:
      linear-gradient(180deg, rgba(6, 31, 21, 0.28) 0%, rgba(6, 31, 21, 0.18) 27%, rgba(6, 31, 21, 0.82) 66%, rgba(6, 31, 21, 0.98) 100%),
      linear-gradient(90deg, rgba(6, 31, 21, 0.62), rgba(6, 31, 21, 0.08));
  }

  .inner-hero-media figcaption {
    top: 24px;
    right: clamp(20px, 5vw, 40px);
    bottom: auto;
    width: min(220px, 44vw);
    padding: 13px 15px;
    border-left-width: 3px;
  }

  .inner-hero-media figcaption strong {
    font-size: 0.92rem;
  }

  .services-editorial,
  .process-layout,
  .home-proof,
  .home-local,
  .values-grid,
  .principle-band,
  .service-row,
  .featured-work,
  .resource-grid,
  .checklist-section,
  .contact-workspace,
  .contact-map,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-work {
    gap: 54px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-photo,
  .services-photo img {
    min-height: 520px;
  }

  .home-proof {
    padding-right: clamp(20px, 5vw, 44px);
    padding-left: clamp(20px, 5vw, 44px);
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts > div,
  .about-facts > div + div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    padding: 18px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .about-facts > div:last-child {
    border-bottom: 0;
  }

  .about-facts dd {
    margin: 0;
  }

  .values-grid article + article {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .values-grid article {
    min-height: 290px;
  }

  .values-grid article > span {
    margin-bottom: 68px;
  }

  .principle-band img {
    min-height: 240px;
  }

  .service-row {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-row-index {
    flex-direction: row;
    align-items: center;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-row-dark .service-row-index {
    border-color: var(--line-light);
  }

  .service-row-index small {
    writing-mode: initial;
  }

  .service-row figure,
  .service-row figure img {
    height: 500px;
    min-height: 0;
  }

  .featured-work article:nth-child(2) {
    margin-top: 0;
  }

  .featured-work article:nth-child(2) figure img {
    aspect-ratio: 16 / 10;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(8) {
    grid-column: span 6;
    min-height: 320px;
  }

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

  .video-grid video:last-child {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .resource-grid .resource-featured {
    grid-row: auto;
  }

  .resource-grid article,
  .resource-grid .resource-featured {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .resource-grid figure,
  .resource-grid .resource-featured figure {
    min-height: 390px;
  }

  .checklist-section {
    padding-right: clamp(20px, 5vw, 44px);
    padding-left: clamp(20px, 5vw, 44px);
  }

  .estimate-banner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .estimate-banner-action {
    justify-self: start;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    gap: 10px;
    padding: 0 12px;
  }

  .brand,
  .is-scrolled .brand {
    width: 116px;
    height: 58px;
  }

  .lang-toggle,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    padding: 30px 20px 36px;
  }

  .site-nav > a {
    font-size: 1.45rem;
  }

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

  .home-hero-copy {
    min-height: auto;
    padding: 70px 20px 68px;
  }

  .home-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .inner-hero {
    min-height: 720px;
  }

  .inner-hero-copy {
    min-height: 720px;
    padding: 28px 20px 44px;
  }

  .inner-hero h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: 0.9;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero-index {
    width: 46%;
    margin-bottom: auto;
  }

  .inner-hero h1 + p {
    max-width: 34ch;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts > div:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .home-hero-media,
  .home-hero-media img {
    min-height: 440px;
  }

  .home-hero-media figcaption {
    width: calc(100% - 24px);
    padding: 18px 20px;
  }

  .inner-hero-media figcaption {
    top: 20px;
    right: 20px;
    width: min(180px, 48%);
    padding: 11px 13px;
  }

  .inner-hero-media figcaption span {
    font-size: 0.56rem;
  }

  .inner-hero-media figcaption strong {
    font-size: 0.82rem;
  }

  .content-section {
    padding: 76px 20px;
  }

  .section-topline {
    grid-template-columns: 46px 1fr;
    gap: 10px;
    margin-bottom: 46px;
  }

  .section-topline .section-link {
    grid-column: 2;
    margin-top: 8px;
  }

  .section-heading-split,
  .project-feature-heading,
  .guide-intro-copy,
  .video-heading {
    margin-bottom: 52px;
  }

  .work-page .project-feature {
    padding-top: 68px;
    padding-bottom: 84px;
  }

  .work-page .project-feature > .section-topline {
    margin-bottom: 34px;
  }

  .work-page .project-feature-heading {
    gap: 22px;
    margin-bottom: 44px;
  }

  .work-page .project-feature-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .work-page .project-feature-heading > p {
    padding-left: 16px;
    border-left-width: 3px;
  }

  .services-photo,
  .services-photo img,
  .home-about-media,
  .home-about-media img,
  .story-media,
  .story-media img {
    min-height: 420px;
  }

  .service-index article {
    grid-template-columns: 34px 1fr 40px;
    gap: 10px;
    padding: 24px 0;
  }

  .service-index article:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .service-index article > a {
    width: 38px;
    height: 38px;
  }

  .home-about-copy {
    padding: 72px 20px;
  }

  .process-layout li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .process-layout li:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .home-proof {
    padding: 76px 20px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .proof-gallery .proof-tall {
    grid-row: auto;
    min-height: 360px;
  }

  .proof-gallery figure {
    min-height: 300px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }

  .estimate-banner {
    width: calc(100% - 24px);
    margin-bottom: 76px;
    padding: 42px 22px;
  }

  .estimate-banner-action {
    width: 100%;
  }

  .values-section,
  .project-gallery-section,
  .checklist-section {
    padding: 76px 20px;
  }

  .principle-band {
    width: calc(100% - 24px);
    margin: 76px auto;
  }

  .principle-band > div {
    padding: 38px 22px;
  }

  .principle-band blockquote {
    font-size: clamp(2.7rem, 13vw, 4.7rem);
  }

  .service-ticker {
    overflow-x: auto;
  }

  .service-ticker > div {
    justify-content: flex-start;
  }

  .service-row {
    padding: 68px 20px;
  }

  .service-row figure,
  .service-row figure img {
    height: 400px;
    min-height: 0;
  }

  .service-row-copy ul {
    grid-template-columns: 1fr;
  }

  .service-row-copy li:nth-child(even),
  .service-row-copy li:nth-child(odd) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .featured-work h3 {
    font-size: clamp(1.9rem, 10vw, 3.1rem);
  }

  .featured-work {
    gap: 48px;
  }

  .featured-work figure img,
  .featured-work article:nth-child(2) figure img {
    aspect-ratio: 4 / 3;
  }

  .featured-work article > div {
    gap: 10px;
    padding: 24px 0 30px;
  }

  .featured-work figure > span {
    top: 12px;
    left: 12px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(8) {
    grid-column: 1 / -1;
    min-height: 340px;
  }

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

  .video-grid video:last-child {
    grid-column: auto;
    width: 100%;
  }

  .resource-grid {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    margin-bottom: 76px;
  }

  .resource-grid article,
  .resource-grid .resource-featured {
    grid-template-columns: 1fr;
  }

  .resource-grid figure,
  .resource-grid .resource-featured figure {
    min-height: 380px;
  }

  .checklist-section {
    margin-bottom: 76px;
  }

  .checklist-section li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .contact-workspace {
    width: calc(100% - 24px);
    margin: 76px auto;
  }

  .contact-panel,
  .estimate-form {
    padding: 46px 22px;
  }

  .contact-methods a {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .contact-methods strong {
    font-size: 0.75rem;
  }

  .contact-social-row {
    flex-direction: column;
  }

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

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

  .form-submit {
    width: 100%;
  }

  .footer-grid {
    padding: 70px 20px;
  }

  .footer-bottom {
    padding: 24px 20px 92px;
  }

  .quick-contact {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 11px 14px;
  }
}

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

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

  .motion-ready [data-reveal],
  .motion-ready [data-stagger] > * {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }

  .quick-contact {
    opacity: 1;
    transform: none;
  }
}
