:root {
  color-scheme: light;
  --ink: #111513;
  --muted: #54605d;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #d9ded8;
  --teal: #087a78;
  --teal-dark: #0f3f3f;
  --copper: #b86432;
  --leaf: #4e724e;
  --shadow: 0 18px 46px rgb(17 21 19 / 14%);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--surface);
  color: var(--ink);
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(1.25rem, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: rgb(11 18 17 / 66%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: .7rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #083332;
  background: #f5fffb;
  border: 2px solid rgb(255 255 255 / 65%);
  border-radius: 8px;
  box-shadow: inset 0 -5px 0 rgb(8 122 120 / 18%);
}

.nav-links {
  gap: .25rem;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  border-radius: 6px;
  color: rgb(255 255 255 / 88%);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgb(255 255 255 / 12%);
  color: #fff;
  outline: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  max-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 8rem 1.25rem 4rem;
}

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

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(6 14 13 / 91%) 0%, rgb(6 14 13 / 72%) 42%, rgb(6 14 13 / 22%) 100%),
    linear-gradient(0deg, rgb(6 14 13 / 50%) 0%, rgb(6 14 13 / 0%) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f4b681;
}

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

h1 {
  margin-bottom: .9rem;
  max-width: 740px;
  font-size: 4.7rem;
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: .75rem;
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: .45rem;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 1rem;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 700;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 1.8rem;
  color: rgb(255 255 255 / 84%);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
}

.button svg,
.contact-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: #f5fffb;
  color: #073635;
  box-shadow: 0 14px 34px rgb(0 0 0 / 24%);
}

.button-secondary {
  color: #fff;
  background: rgb(255 255 255 / 9%);
  border-color: rgb(255 255 255 / 24%);
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.proof {
  background: var(--teal-dark);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgb(255 255 255 / 16%);
}

.proof-item {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  background: var(--teal-dark);
}

.proof-item strong {
  display: block;
  margin-bottom: .3rem;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
}

.proof-item span {
  color: rgb(255 255 255 / 76%);
}

.services,
.seo-text {
  padding: 5.5rem 0;
}

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

.section-heading p,
.seo-text p,
.contact p,
.service-card p,
.steps p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 290px;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgb(17 21 19 / 6%);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process {
  padding: 5.5rem 0;
  background: #eef2ee;
  border-block: 1px solid var(--line);
}

.process-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.compact {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e5f3ef;
  color: var(--teal-dark);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.text-columns p {
  font-size: 1.04rem;
}

.contact {
  padding: 4.5rem 0;
  background: #17211c;
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 76%);
}

.contact-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .9rem 1.1rem;
  border-radius: 8px;
  background: #f5fffb;
  color: #083332;
  font-weight: 900;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.site-footer {
  padding: 1.6rem 0;
  color: #f5fffb;
  background: #0b1110;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgb(255 255 255 / 72%);
  font-size: .92rem;
}

@media (max-width: 940px) {
  .service-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout,
  .text-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .compact {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: absolute;
    min-height: auto;
    align-items: flex-start;
    padding: .9rem 1rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    min-height: 34px;
    padding: .35rem .48rem;
    font-size: .9rem;
  }

  .hero {
    min-height: 78svh;
    padding: 7rem 1rem 3rem;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(6 14 13 / 93%) 0%, rgb(6 14 13 / 77%) 63%, rgb(6 14 13 / 36%) 100%),
      linear-gradient(0deg, rgb(6 14 13 / 55%) 0%, rgb(6 14 13 / 0%) 45%);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .section-inner {
    width: min(100% - 2rem, var(--max));
  }

  .services,
  .process,
  .seo-text {
    padding: 3.6rem 0;
  }

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

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

  .proof-item {
    min-height: 120px;
  }

  .steps li {
    grid-template-columns: 54px 1fr;
    gap: .75rem;
    padding: 1rem;
  }

  .steps span {
    width: 46px;
    height: 46px;
  }

  .contact-link {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-layout {
    flex-direction: column;
  }
}
