:root {
  --green-950: #031f17;
  --green-900: #073423;
  --green-800: #0b4a32;
  --green-700: #14623f;
  --green-100: #e8f2ea;
  --gold-500: #cda256;
  --gold-300: #ead39c;
  --cream: #f7f4ed;
  --white: #ffffff;
  --ink: #17211c;
  --muted: #5d6b63;
  --line: rgba(7, 52, 35, 0.12);
  --shadow: 0 24px 70px rgba(3, 31, 23, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold-500);
  color: var(--green-950);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 31, 23, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 10px 0;
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand strong,
.footer-brand span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  margin-top: 2px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 31, 23, 0.42);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-call {
  display: grid;
  gap: 1px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.nav-call span {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}

.nav-call strong {
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 31, 23, 0.72);
  place-items: center;
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

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

.hero picture img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 31, 23, 0.92) 0%, rgba(3, 31, 23, 0.72) 34%, rgba(3, 31, 23, 0.18) 70%),
    linear-gradient(180deg, rgba(3, 31, 23, 0.52) 0%, rgba(3, 31, 23, 0.18) 44%, rgba(3, 31, 23, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 190px 0 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-500);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}

h2 {
  font-size: clamp(2.05rem, 4vw, 4.25rem);
  color: var(--green-950);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-motto {
  display: inline-flex;
  margin: 0 0 26px;
  padding: 10px 14px;
  border: 1px solid rgba(205, 162, 86, 0.46);
  border-radius: 999px;
  color: var(--gold-300);
  background: rgba(3, 31, 23, 0.58);
  font-weight: 900;
}

.hero-actions,
.section-heading.split,
.quote-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 18px 40px rgba(205, 162, 86, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1160px;
  margin-top: 36px;
}

.trust-row span {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 31, 23, 0.62);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: inset 0 0 0 4px rgba(3, 31, 23, 0.34);
}

.intro-band {
  padding: 52px 0;
  background: var(--green-950);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.intro-grid h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.intro-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
}

.section {
  padding: 104px 0;
}

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

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(205, 162, 86, 0.11), transparent 42%),
    var(--green-950);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.compact {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

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

.section-heading.split {
  max-width: none;
  justify-content: space-between;
  align-items: flex-end;
}

.section-heading.split > div {
  max-width: 760px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-cta-dark .button-primary {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.text-link {
  color: var(--green-800);
  font-weight: 900;
  border-bottom: 2px solid var(--gold-500);
  padding-bottom: 5px;
}

.feature-grid,
.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-card,
.review-card,
.process-grid article,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 40px rgba(3, 31, 23, 0.07);
}

.feature-card {
  min-height: 248px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 162, 86, 0.48);
  box-shadow: var(--shadow);
}

.icon-mark,
.service-icon,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-card h3,
.service-card h3,
.process-grid h3 {
  margin: 22px 0 10px;
  color: var(--green-950);
}

.feature-card p,
.service-card p,
.service-card li,
.review-card p {
  color: var(--muted);
}

.standard-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(205, 162, 86, 0.18), transparent 44%),
    radial-gradient(circle at 86% 8%, rgba(234, 211, 156, 0.12), transparent 30%),
    var(--green-950);
}

.standard-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.standard-copy {
  position: sticky;
  top: 120px;
}

.standard-copy h2,
.standard-copy h3 {
  color: var(--white);
}

.standard-copy h2 {
  margin: 12px 0 18px;
}

.standard-copy sup {
  font-family: var(--font-body);
  font-size: 0.78rem;
  margin-left: 4px;
}

.standard-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.standard-section .text-link {
  color: var(--gold-300);
}

.standard-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.standard-steps article {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.standard-steps span {
  display: inline-flex;
  color: var(--gold-300);
  font-weight: 900;
}

.standard-steps h3 {
  margin: 60px 0 10px;
  color: var(--white);
  font-size: 1rem;
}

.standard-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 26px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-top {
  min-height: 148px;
}

.service-desc {
  min-height: 112px;
}

.service-card ul {
  padding-left: 18px;
  margin: auto 0 0;
}

.service-card li + li {
  margin-top: 8px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 12px;
}

.industry-grid span {
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(3, 31, 23, 0.06);
}

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

.process-grid article {
  min-height: 245px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-grid h3 {
  font-size: 1rem;
}

.results-layout,
.faq-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.results-layout p,
.faq-layout p,
.quote-copy p {
  color: var(--muted);
}

.results-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 14px;
}

.result-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.result-card-large {
  grid-row: span 2;
  min-height: 520px;
}

.result-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

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

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(3, 31, 23, 0.78));
}

.result-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 31, 23, 0.72);
  font-weight: 900;
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.review-card {
  padding: 28px;
  background: var(--white);
}

.stars {
  color: var(--gold-500);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--green-950);
}

.review-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.commitment-section {
  background: var(--green-100);
}

.commitment-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(7, 52, 35, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.commitment-card h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.commitment-card p {
  margin: 0;
  color: var(--muted);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(3, 31, 23, 0.05);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--green-950);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.quote-section {
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(205, 162, 86, 0.18), transparent 38%),
    linear-gradient(180deg, var(--green-900), var(--green-950));
}

.quote-layout {
  align-items: start;
}

.quote-copy h2 {
  color: var(--white);
  margin: 12px 0 18px;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.quote-contact {
  align-items: stretch;
  margin-top: 30px;
}

.quote-contact a,
.quote-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.trust-row-quote {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-top: 26px;
}

.trust-row-quote span {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.075);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
  font-size: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 52, 35, 0.18);
  border-radius: var(--radius);
  background: #fbfaf7;
  padding: 14px 14px;
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

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

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  margin: 0;
  border-left: 3px solid var(--gold-500);
  background: rgba(205, 162, 86, 0.12);
  padding: 12px 14px;
  color: var(--green-950);
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  border-left-color: var(--green-700);
  background: var(--green-100);
}

.form-status.is-error {
  border-left-color: #a62b2b;
  background: #fff0f0;
  color: #7f1d1d;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 38px;
  padding: 64px 0 44px;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--gold-300);
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px 22px;
  text-align: center;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 1120px) {
  .service-grid,
  .process-grid,
  .standard-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: auto;
  }

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

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .nav-call {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(3, 31, 23, 0.98);
  }

  .nav-links.is-open a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .hero {
    min-height: 740px;
  }

  .hero picture img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 31, 23, 0.94), rgba(3, 31, 23, 0.42)),
      linear-gradient(180deg, rgba(3, 31, 23, 0.34), rgba(3, 31, 23, 0.92));
  }

  .hero-content {
    padding-top: 160px;
  }

  .trust-row,
  .intro-grid,
  .feature-grid,
  .standard-layout,
  .results-layout,
  .faq-layout,
  .quote-layout,
  .commitment-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .result-card,
  .result-card-large {
    min-height: 360px;
    grid-row: auto;
  }

  .standard-copy {
    position: static;
  }

  .standard-steps article {
    min-height: 220px;
  }

  .standard-steps h3 {
    margin-top: 42px;
  }

  .commitment-card {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    padding: 112px 0 30px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.35rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions .button,
  .quote-form .button {
    width: 100%;
  }

  .feature-grid,
  .service-grid,
  .industry-grid,
  .process-grid,
  .standard-steps,
  .review-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .trust-row span {
    min-height: 58px;
    padding: 12px 10px 12px 34px;
    font-size: 0.76rem;
  }

  .trust-row span::before {
    left: 11px;
    width: 12px;
    height: 12px;
  }

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

  .standard-steps article {
    min-height: auto;
  }

  .standard-steps h3 {
    margin-top: 28px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading.split {
    align-items: flex-start;
  }

  .service-top,
  .service-desc {
    min-height: 0;
  }

  .result-card,
  .result-card-large {
    min-height: 310px;
  }

  .commitment-card {
    padding: 26px;
  }

  .quote-form .full,
  .full {
    grid-column: auto;
  }
}

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