:root {
  --ink: #14211f;
  --muted: #5e6966;
  --line: #d8dfdc;
  --surface: #f7f8f5;
  --surface-strong: #edf2ee;
  --white: #ffffff;
  --green: #285c4d;
  --green-dark: #183c34;
  --amber: #bc8a38;
  --rust: #9a4f34;
  --steel: #52646c;
  --shadow: 0 24px 80px rgba(20, 33, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(216, 223, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--green);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px) 56px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(237, 242, 238, 0.58)),
    url("https://images.unsplash.com/photo-1565608087341-404b25492fee?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: #33403d;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

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

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

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 223, 220, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header span,
.metric span,
.variance-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.panel-header strong {
  color: var(--green);
}

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

.metric {
  min-height: 118px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.variance-card {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
  align-items: end;
  margin-top: 14px;
  padding: 16px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.variance-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.variance-card span {
  color: rgba(255, 255, 255, 0.7);
}

.bars {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 8px;
  height: 84px;
}

.bars span {
  display: block;
  width: 18px;
  background: var(--amber);
  border-radius: 5px 5px 0 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  padding: 18px clamp(16px, 3vw, 32px);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-copy,
.section-heading {
  max-width: 820px;
}

.problem-section,
.approach-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
}

.problem-grid {
  display: grid;
  gap: 18px;
}

.problem-grid article,
.steps article,
.service-card,
.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-grid article {
  padding: 24px;
}

.problem-grid p,
.service-card p,
.steps p,
.about-section p,
.contact-copy p {
  color: var(--muted);
}

.services-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  min-height: 255px;
  padding: 24px;
  background: var(--surface);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--rust);
  font-weight: 900;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 900;
}

.about-section {
  align-items: start;
  background: var(--surface-strong);
}

.about-content {
  max-width: 820px;
}

.about-card {
  padding: 28px;
  box-shadow: 0 18px 55px rgba(20, 33, 31, 0.08);
}

.about-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--muted);
}

.about-card li + li {
  margin-top: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--green-dark);
}

.contact-section .eyebrow {
  color: #e5b564;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(40, 92, 77, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: progress;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--rust);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .problem-section,
  .approach-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 740px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 13px 14px !important;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .metric-grid,
  .steps,
  .trust-strip,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .variance-card {
    grid-template-columns: 1fr;
  }

  .bars {
    justify-content: flex-start;
  }

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 430px) {
  .brand {
    gap: 9px;
    font-size: 0.95rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-panel,
  .contact-form {
    padding: 18px;
  }
}
