@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #123f2b;
  --forest-deep: #0a2d20;
  --forest-soft: #24583f;
  --leaf: #a6cb4b;
  --leaf-bright: #b9dc58;
  --cream: #f4f1e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --charcoal: #202620;
  --muted: #677068;
  --line: rgba(18, 63, 43, 0.15);
  --container: 1180px;
  --shadow: 0 24px 70px rgba(9, 41, 28, 0.12);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7.5vw, 7.3rem);
  font-weight: 600;
}

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

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.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: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--leaf-bright);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 46px;
  padding-inline: 1.15rem;
  font-size: 0.78rem;
}

.button--accent {
  color: var(--forest-deep);
  background: var(--leaf-bright);
}

.button--accent:hover {
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--forest-deep);
}

.button--dark:hover {
  background: var(--forest-soft);
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.button--outline:hover {
  color: var(--forest-deep);
  border-color: var(--leaf-bright);
  background: var(--leaf-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 600;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 1.1rem;
  color: var(--forest-soft);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--charcoal);
  background: rgba(251, 250, 246, 0.97);
  box-shadow: 0 8px 24px rgba(9, 41, 28, 0.08);
  backdrop-filter: blur(12px);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(9, 41, 28, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.035em;
}

.is-scrolled .utility-bar {
  color: rgba(255, 255, 255, 0.88);
  border-color: transparent;
  background: var(--forest-deep);
}

.utility-bar__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a:hover {
  color: var(--leaf-bright);
}

.nav-shell {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.2rem;
}

.brand {
  position: relative;
  display: block;
  width: 154px;
  height: 70px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.12));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.15rem, 2.2vw, 2.3rem);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 1rem 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.7rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 810px;
  height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/images/hero-yard.jpg");
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 25, 17, 0.92) 0%, rgba(5, 25, 17, 0.7) 43%, rgba(5, 25, 17, 0.16) 75%),
    linear-gradient(0deg, rgba(5, 25, 17, 0.65) 0%, transparent 44%);
}

.hero__inner {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 128px;
  padding-bottom: 64px;
}

.hero__copy {
  width: min(760px, 70%);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

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

.hero__note {
  align-self: flex-end;
  width: 245px;
  margin-bottom: 42px;
  padding: 1.5rem 0 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.hero__note-number {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--leaf-bright);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.hero__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero__scroll {
  position: absolute;
  right: 30px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll span {
  writing-mode: vertical-rl;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--leaf-bright);
}

.trust-strip {
  color: var(--white);
  background: var(--forest);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem clamp(1.3rem, 3vw, 3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:first-child {
  padding-left: 0;
}

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

.trust-item strong {
  color: var(--leaf-bright);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.trust-item span {
  max-width: 130px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.4;
}

.services {
  background: var(--cream);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

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

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

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.service-card--large {
  grid-column: span 2;
}

.service-card img,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:nth-child(4) img {
  object-position: center 78%;
}

.service-card:nth-child(5) img {
  object-position: center 42%;
}

.service-card__shade {
  background: linear-gradient(180deg, rgba(5, 25, 17, 0.06) 20%, rgba(5, 25, 17, 0.92) 100%);
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.service-card__content > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--leaf-bright);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.services-footer p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-visual__main {
  position: absolute;
  inset: 0 11% 0 0;
  width: 89%;
  height: 100%;
  object-fit: cover;
}

.about-visual::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -28px;
  width: 70%;
  height: 76%;
  border: 1px solid var(--leaf);
  content: "";
}

.about-visual__badge {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 190px;
  padding: 1.6rem;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.about-visual__badge span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--leaf-bright);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-visual__badge strong {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
}

.about-copy h2 {
  font-size: clamp(2.7rem, 4.3vw, 4.6rem);
}

.about-copy > p {
  color: var(--muted);
}

.about-copy__lead {
  color: var(--forest) !important;
  font-size: 1.2rem;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 2rem 0 2.4rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  color: var(--forest-soft);
  content: "✓";
  font-weight: 700;
}

.projects {
  color: var(--white);
  background: var(--forest-deep);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.62);
}

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

.project-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.project-card--wide {
  grid-column: span 2;
}

.project-card--tall {
  grid-row: span 2;
}

.project-card--tall img {
  object-position: center 78%;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 450ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--wide:last-child img {
  object-position: center 35%;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 25, 17, 0.88));
  content: "";
}

.project-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.project-card figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
}

.project-card figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--leaf-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card figcaption strong {
  font-size: 1.15rem;
  font-weight: 500;
}

.choice {
  background: var(--cream);
}

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

.choice-card {
  position: relative;
  min-height: 330px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
}

.choice-card:last-child {
  border-right: 0;
}

.choice-card > span {
  display: block;
  margin-bottom: clamp(2.4rem, 5vw, 4.6rem);
  color: var(--forest-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.choice-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--forest);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.choice-card h3 {
  margin-bottom: 1rem;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.choice-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.estimate {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--paper);
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  box-shadow: var(--shadow);
}

.estimate-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.7rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 45, 32, 0.97), rgba(18, 63, 43, 0.9)),
    url("assets/images/hero-yard.jpg") center 52% / cover;
}

.estimate-intro::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(190, 226, 92, 0.45);
  border-radius: 50%;
  content: "";
}

.estimate-intro h2 {
  margin-bottom: 1.7rem;
  font-size: clamp(2.8rem, 4.8vw, 5.1rem);
}

.estimate-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.72);
}

.estimate-facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 2.4rem 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.estimate-facts li {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.estimate-facts strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.estimate-facts span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
}

.estimate-form {
  padding: clamp(2.4rem, 5vw, 4.5rem);
  background: var(--white);
}

.estimate-form__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.estimate-form__heading span {
  color: var(--forest);
  font-size: 1.3rem;
  font-weight: 600;
}

.estimate-form__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.field label span {
  color: var(--forest-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18, 63, 43, 0.22);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 0.9rem;
}

.field textarea {
  min-height: 138px;
  padding: 0.8rem 0.9rem;
  line-height: 1.5;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(18, 63, 43, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--forest-soft);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(166, 203, 75, 0.28);
}

.estimate-form__submit {
  width: 100%;
  margin-top: 1.4rem;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  color: var(--forest-deep);
  border-left: 3px solid var(--leaf);
  background: rgba(166, 203, 75, 0.16);
  font-size: 0.84rem;
}

.site-footer {
  padding: 5rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.75fr) 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 4rem;
}

.brand--footer {
  width: 185px;
  height: 110px;
  margin-bottom: 1.5rem;
  padding: 0.4rem;
  background: var(--cream);
}

.footer-brand p {
  max-width: 290px;
  font-size: 0.88rem;
}

.site-footer h3 {
  margin: 1rem 0 1.4rem;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
}

.site-footer a:hover {
  color: var(--leaf-bright);
}

.footer-contact > a:first-of-type {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-contact p {
  margin-bottom: 1.5rem;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .primary-nav {
    gap: 1rem;
  }

  .hero__note,
  .hero__scroll {
    display: none;
  }

  .hero__copy {
    width: min(790px, 86%);
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-contact h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .footer-contact p,
  .footer-contact > a:first-of-type {
    margin: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .utility-bar p {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .nav-shell {
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    z-index: 2;
    width: 125px;
    height: 62px;
  }

  .nav-toggle {
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    grid-column: 3;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    padding: 6rem 2.4rem 3rem;
    color: var(--white);
    background: var(--forest-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .primary-nav a {
    width: 100%;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: clamp(1.8rem, 9vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 25, 17, 0.88), rgba(5, 25, 17, 0.38)),
      linear-gradient(0deg, rgba(5, 25, 17, 0.75), transparent 55%);
  }

  .hero__inner {
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

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

  .trust-item,
  .trust-item:first-child {
    min-height: auto;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .trust-item strong {
    min-width: 115px;
  }

  .trust-item span {
    max-width: none;
  }

  .section-heading--split,
  .about-grid,
  .estimate-grid {
    grid-template-columns: 1fr;
  }

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

  .choice-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .service-card--large {
    grid-column: span 2;
  }

  .about-visual {
    min-height: 560px;
  }

  .project-grid {
    grid-auto-rows: 260px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card--tall {
    grid-row: span 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-contact h3 {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 4.8rem 0;
  }

  .utility-bar {
    font-size: 0.69rem;
  }

  .hero__media {
    background-position: 58% center;
  }

  .hero__lead {
    max-width: 95%;
    font-size: 1rem;
  }

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

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

  .service-card,
  .service-card--large,
  .project-card--wide {
    grid-column: auto;
  }

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

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

  .about-visual {
    min-height: 470px;
  }

  .about-visual__main {
    right: 7%;
    width: 93%;
  }

  .about-visual__badge {
    bottom: 22px;
    width: 160px;
    padding: 1.2rem;
  }

  .project-grid {
    grid-auto-rows: 310px;
  }

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

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

  .estimate-intro,
  .estimate-form {
    padding: 2.1rem;
  }

  .estimate-form__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

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

@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;
  }

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