:root {
  --text: #17211d;
  --muted: #5f6b66;
  --green: #176b52;
  --green-dark: #12483a;
  --green-soft: #edf6f1;
  --accent: #dff66c;
  --surface: #f7f8f6;
  --white: #ffffff;
  --border: #dce2de;
  --page: min(1160px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
::selection { background: var(--accent); color: var(--text); }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--text);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 76px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 32px;
  color: #47534e;
  font-size: 14px;
}

nav a, .header-link { transition: color .2s ease; }
nav a:hover, .header-link:hover { color: var(--green); }

.header-link {
  justify-self: end;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.header-link span { margin-left: 5px; }

.hero,
.experience,
.about,
.services,
.why,
.audit,
footer {
  width: var(--page);
  margin: 0 auto;
}

.hero {
  min-height: 650px;
  padding: 104px 0;
  display: flex;
  align-items: center;
}

.hero-copy { max-width: 900px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 78px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.06;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(35px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
}

h1 em, h2 em {
  color: var(--green);
  font-style: normal;
  font-weight: inherit;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 12px;
  color: #34413b;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.hero-note {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 16px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; }

.button-primary {
  background: var(--green-dark);
  color: var(--white);
}

.button-primary:hover { background: #0c382d; }

.experience {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.section-label { max-width: 820px; }

.experience-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.experience-grid article {
  min-height: 178px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.experience-grid strong,
.experience-grid span {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.experience-grid strong { font-size: 38px; }

.experience-grid p {
  margin: 28px 0 0;
  color: #46524c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.about {
  padding: 96px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(64px, 9vw, 120px);
  border-top: 1px solid var(--border);
}

.about-heading h2 { max-width: 500px; }

.about-copy {
  color: #46524c;
  font-size: 16px;
  line-height: 1.75;
}

.about-copy p { max-width: 620px; }

.about-copy .pull-quote {
  margin: 28px 0;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  color: var(--text);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.services {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.services-intro {
  max-width: 800px;
  margin-bottom: 48px;
}

.services-list { border-top: 1px solid var(--border); }

.services-list article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 52px minmax(220px, .75fr) 1.25fr;
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.service-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
}

.services-list p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ready {
  padding: 88px max(24px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(60px, 10vw, 130px);
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.ready h2 { color: var(--white); }
.ready h2 em, .ready .eyebrow { color: var(--accent); }

.ready-copy p {
  margin-bottom: 28px;
  color: #d7e3de;
  font-size: 17px;
  line-height: 1.65;
}

.button-light {
  background: var(--white);
  color: var(--green-dark);
}

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

.why {
  padding: 96px 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(64px, 9vw, 120px);
}

.why h2 { max-width: 480px; }

.why ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.why li {
  min-height: 124px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #34413b;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.why li span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.audit {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  overflow: hidden;
  border: 1px solid #cddbd4;
  border-radius: 10px;
  background: var(--green-soft);
}

.audit-card { padding: clamp(42px, 6vw, 72px); }

.audit-card h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.audit-card > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #4e5b55;
}

.audit-card .cta-price {
  max-width: 560px;
  margin-bottom: 30px;
  padding: 18px 20px;
  display: grid;
  gap: 12px;
  border: 1px solid #d6e1da;
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  color: #24322c;
}

.audit-card .cta-price p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.35;
}

.audit-card .cta-price span {
  color: #6d7a74;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audit-detail {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #cddbd4;
  background: var(--white);
}

.audit-detail > span {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audit-detail p {
  position: relative;
  margin: 0;
  padding: 16px 0 16px 27px;
  border-bottom: 1px solid var(--border);
  color: #34413b;
  font-size: 15px;
  font-weight: 600;
}

.audit-detail p::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

footer {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

footer .brand { color: var(--text); }
footer p { margin: 0; }

footer > span {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  :root { --page: calc(100vw - 40px); }

  .site-header {
    padding-right: 20px;
    padding-left: 20px;
    grid-template-columns: 1fr auto;
  }

  nav { display: none; }
  .hero { min-height: auto; padding: 88px 0; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .about, .ready, .why, .audit { grid-template-columns: 1fr; }
  .about { gap: 42px; }
  .services-list article { grid-template-columns: 44px 1fr; }
  .services-list p { grid-column: 2; }
  .ready { padding-right: 20px; padding-left: 20px; gap: 40px; }
  .why { gap: 44px; }
  .audit-detail { border-top: 1px solid #cddbd4; border-left: 0; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 32px); }

  .site-header { min-height: 70px; }
  .brand { font-size: 14px; }
  .header-link { font-size: 0; }
  .header-link span { font-size: 19px; }
  .hero { padding: 70px 0; }
  h1 { font-size: 44px; letter-spacing: -.04em; }
  h2 { font-size: 34px; }
  .hero-lede { font-size: 18px; }
  .button { width: 100%; }

  .experience, .about, .services, .why { padding: 72px 0; }
  .experience-grid { margin-top: 36px; grid-template-columns: 1fr; }
  .experience-grid article { min-height: 142px; }
  .about { gap: 30px; }
  .services-intro { margin-bottom: 36px; }

  .services-list article {
    padding: 25px 0;
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .ready { padding-top: 68px; padding-bottom: 68px; }
  .why ul { grid-template-columns: 1fr; }
  .why li { min-height: 106px; }
  .audit { width: 100%; margin-bottom: 50px; border-radius: 0; border-right: 0; border-left: 0; }
  .audit-card, .audit-detail { padding: 48px 20px; }
  footer { grid-template-columns: 1fr; }
  footer > span { grid-column: auto; }
}

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