:root {
  color-scheme: light;
  --bg: #f7f9f5;
  --surface: #fffefa;
  --surface-muted: #eef4ef;
  --ink: #17201d;
  --muted: #5e6b66;
  --line: #d8e0da;
  --teal: #007f73;
  --teal-dark: #005d55;
  --blue: #2f5f9f;
  --amber: #ad6f2b;
  --moss: #526f56;
  --shadow: 0 18px 46px rgba(23, 32, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(0, 127, 115, 0.32);
  border-radius: 8px;
  background: var(--surface);
  color: var(--teal-dark);
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0, 127, 115, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(0, 127, 115, 0.08);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 52px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px 44px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 74px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(47, 95, 159, 0.42);
  color: var(--blue);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
}

.facts div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
}

.facts dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(var(--shadow));
}

.section {
  padding: 82px 28px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 860px;
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 196px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card:nth-child(2n) {
  border-top-color: rgba(47, 95, 159, 0.34);
}

.service-card:nth-child(3n) {
  border-top-color: rgba(173, 111, 43, 0.38);
}

.service-card p {
  margin-bottom: 0;
}

.band {
  background: var(--surface-muted);
}

.approach-layout,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
}

.approach-list {
  display: grid;
  gap: 16px;
}

.approach-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(23, 32, 29, 0.15);
}

.approach-list article:last-child {
  border-bottom: 1px solid rgba(23, 32, 29, 0.15);
}

.step {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 127, 115, 0.1);
  color: var(--teal-dark);
  font-weight: 800;
}

.approach-list h3,
.approach-list p {
  grid-column: 2;
}

.approach-list h3 {
  margin-bottom: 6px;
}

.approach-list p {
  margin-bottom: 0;
}

.body-copy p {
  font-size: 18px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  padding: 0 28px 84px;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(0, 127, 115, 0.24);
  border-radius: 8px;
  background: var(--surface);
}

.contact-inner h2 {
  margin-bottom: 10px;
}

.contact-inner p {
  max-width: 640px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.legal-page .section {
  padding-top: 70px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.legal-copy h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 700;
}

.not-found {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 52px 28px;
  text-align: center;
}

.not-found section {
  max-width: 520px;
}

.not-found h1 {
  font-size: clamp(38px, 6vw, 64px);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 34px;
  }

  .hero-visual {
    max-width: 680px;
  }

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

  .approach-layout,
  .two-column {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    padding: 16px 18px;
  }

  .brand {
    white-space: nowrap;
  }

  .nav {
    display: none;
  }

  .hero,
  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

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

  .hero-visual {
    display: none;
  }

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

  .approach-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .step {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .contact-inner,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-inner {
    padding: 24px;
  }
}
