:root {
  --light-mystified: #D6E4D6;
  --continental-waters: #97C8CB;
  --candidate: #C6BE8D;
  --brig: #49A6BB;
  --scots-pine: #636536;
  --black-mesa: #242510;
  --line: rgba(36, 37, 16, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--light-mystified);
  color: var(--black-mesa);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin: 0; }
p { color: rgba(36, 37, 16, .68); line-height: 1.58; }
.wrap { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }

.nav {
  position: sticky;
  top: 18px;
  z-index: 10;
  width: min(1240px, calc(100% - 48px));
  margin: 22px auto 0;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(36, 37, 16, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 18px 44px rgba(36, 37, 16, .08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  font-size: 14px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
  color: var(--black-mesa);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}
.nav-toggle span {
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
.brand {
  font-family: Righteous, Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.links { display: flex; align-items: center; gap: 44px; }
.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--black-mesa);
  font-weight: 600;
}

.hero {
  padding: 112px 0 72px;
  text-align: center;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--scots-pine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(58px, 8vw, 126px);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 600;
}
.lead {
  max-width: 780px;
  margin: 28px auto 0;
  color: rgba(36, 37, 16, .7);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 34px 0 78px;
  border-top: 1px solid var(--line);
}
.intro-grid h2,
.section-title {
  font-size: clamp(42px, 5vw, 82px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 600;
}
.intro-copy {
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.service-list {
  display: grid;
  gap: 12px;
  padding: 28px 0 92px;
}
.service-row {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr 1.15fr .3fr;
  gap: 34px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  background: rgba(255, 255, 255, .18);
}
.service-row:nth-child(2n) { background: rgba(151, 200, 203, .22); }
.service-row:nth-child(3n) { background: rgba(198, 190, 141, .22); }
.service-row h2 {
  font-size: clamp(38px, 5vw, 82px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 600;
}
.service-row p { max-width: 560px; font-size: 17px; }
.service-row .arrow {
  justify-self: end;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1;
}

.breakdown,
.steps,
.local-proof,
.faq {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: rgba(255, 255, 255, .18);
}
.card b {
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.card p { font-size: 15px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  background: rgba(255, 255, 255, .18);
}
.panel h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: .96;
  letter-spacing: -.055em;
}
.panel ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(36, 37, 16, .68);
  line-height: 1.7;
}
.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.step span {
  display: block;
  margin-bottom: 34px;
  color: var(--scots-pine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.step b {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.cta {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: var(--black-mesa);
  color: var(--light-mystified);
  text-align: center;
  padding: 96px 20px;
}
.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -.06em;
}
.cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  color: var(--candidate);
  font-size: 18px;
}

footer {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #151515;
  color: #fff2e9;
  padding: 32px 0 36px;
}
.footer-grid {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr .9fr;
  gap: 34px;
}
.footer-grid b {
  display: block;
  margin-bottom: 14px;
  color: #fff2e9;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 242, 233, .78);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}
.footer-logo {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  margin-top: 44px;
  color: #fff2e9;
  font-size: clamp(52px, 9vw, 132px);
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 600;
}

@media (max-width: 820px) {
  .nav { width: calc(100% - 24px); top: 10px; font-size: 12px; gap: 12px; }
  .brand { font-size: 14px; }
  .nav-toggle { display: none; }
  .links { display: none; }
  .nav > .pill { display: inline-flex; margin-left: auto; min-height: 38px; padding: 0 16px; }
  .hero { padding: 82px 0 54px; }
  .intro-grid,
  .service-row,
  .two-col { grid-template-columns: 1fr; }
  .service-row { min-height: 0; gap: 24px; }
  .service-row .arrow { justify-self: start; }
  .cards { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo { font-size: 56px; }
}

@media (max-width: 520px) {
  .step-list { grid-template-columns: 1fr; }
}
