:root {
  --ink: #13231f;
  --muted: #5c6b66;
  --paper: #f6f3ea;
  --surface: #fffdf7;
  --accent: #e66b3d;
  --accent-dark: #bd4721;
  --line: #d9d8cd;
  --green: #1c4e43;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
.site-header, main, footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 1.05rem; font-weight: 900; letter-spacing: .22em; text-decoration: none; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: .92rem; font-weight: 650; text-decoration: none; }
.nav-contact { color: var(--accent-dark); }

.hero { min-height: 680px; display: grid; align-content: center; max-width: 980px; padding: 90px 0; }
.eyebrow { margin: 0 0 16px; color: var(--accent-dark); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 950px; margin: 0; font-size: clamp(3rem, 7.4vw, 6.6rem); }
h2 { max-width: 720px; margin: 0; font-size: clamp(2.25rem, 4.5vw, 4rem); }
h3 { margin: 18px 0 12px; font-size: 1.45rem; }
.hero-copy { max-width: 680px; margin: 32px 0; color: var(--muted); font-size: clamp(1.15rem, 2vw, 1.4rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 52px; align-items: center; padding: 0 24px; border: 1px solid var(--ink); border-radius: 4px; font-weight: 750; text-decoration: none; }
.button.primary { border-color: var(--accent); color: #fff; background: var(--accent); }
.button.primary:hover { border-color: var(--accent-dark); background: var(--accent-dark); }
.button.secondary:hover { background: var(--surface); }

.services, .method { padding: 110px 0; border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 58px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cards article { min-height: 260px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 253, 247, .45); }
.cards span { color: var(--accent-dark); font-size: .8rem; font-weight: 850; }
.cards p { max-width: 430px; color: var(--muted); }

.method ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.method li { display: grid; grid-template-columns: minmax(150px, .65fr) 2fr; gap: 40px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.method strong { font-size: 1.2rem; }
.method span { color: var(--muted); }

.cta { margin: 70px 0 110px; padding: clamp(38px, 7vw, 76px); color: #fff; background: var(--green); }
.cta .eyebrow { color: #ff9a72; }
.cta p:not(.eyebrow) { max-width: 620px; margin: 24px 0 32px; color: #d8e5e1; font-size: 1.15rem; }
.status-pill { display: inline-flex; padding: 10px 14px; border: 1px solid #7ca69b; border-radius: 999px; color: #eaf4f1; font-size: .88rem; font-weight: 700; }
footer { display: grid; grid-template-columns: 1fr 2fr auto; gap: 28px; align-items: center; padding: 32px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
footer p { margin: 0; }

@media (max-width: 720px) {
  .site-header { min-height: 72px; }
  nav a:not(.nav-contact) { display: none; }
  .hero { min-height: auto; padding: 90px 0; }
  .cards { grid-template-columns: 1fr; }
  .method li { grid-template-columns: 1fr; gap: 8px; }
  footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
