:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #101820;
  --muted: #5f6b73;
  --primary: #342418;
  --accent: #1f130d;
  --line: rgba(16, 24, 32, .14);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px clamp(18px, 5vw, 70px); background: color-mix(in srgb, var(--bg) 88%, white); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-weight: 900; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; background: white; border: 1px solid var(--line); }
nav { display: flex; gap: 18px; }
nav a { color: var(--muted); font-weight: 750; text-decoration: none; }
main { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.hero { min-height: 68vh; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 32px; align-items: center; padding: 72px 0 46px; }
.eyebrow { color: var(--primary); font-size: 13px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 820px; margin: 10px 0 18px; font-size: clamp(44px, 7vw, 82px); line-height: .94; letter-spacing: 0; }
h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); line-height: 1.06; letter-spacing: 0; }
.lede { max-width: 680px; color: var(--muted); font-size: 21px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 12px 18px; border: 1px solid var(--primary); border-radius: 999px; background: var(--primary); color: white; font-weight: 850; text-decoration: none; }
.button-secondary { background: transparent; color: var(--primary); }
.button-small { min-height: 38px; padding: 8px 13px; font-size: 14px; white-space: nowrap; }
.proof-card, .card-grid article, .contact-card { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); padding: 26px; box-shadow: 0 22px 55px rgba(16, 24, 32, .06); }
.proof-card strong { display: block; color: var(--primary); font-size: 46px; line-height: 1; }
.proof-card span { display: block; margin: 12px 0; color: var(--muted); font-size: 20px; }
.card-grid, .service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 22px 0 64px; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 20px 0 72px; padding: 34px; border-radius: 8px; background: var(--text); color: white; }
.cta-band p { color: rgba(255,255,255,.78); }
.page { padding: 72px 0; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 24px; align-items: start; }
footer { width: min(1120px, calc(100% - 36px)); margin: 0 auto; padding: 28px 0 42px; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 780px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { flex-wrap: wrap; }
  .hero, .card-grid, .service-list, .contact-layout { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}
