:root {
  --bg: #ffffff;
  --text: #141414;
  --muted: #666666;
  --line: #e8e8e8;
  --soft: #f7f7f5;
  --accent: #8b6f3d;
  --accent-dark: #5c4827;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -.02em;
}
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
}
nav a:hover { color: var(--text); }
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 5vw, 40px);
}
.hero { padding-top: clamp(96px, 14vw, 170px); }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}
h3 {
  font-size: 20px;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
.lead {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 23px);
  color: var(--muted);
  margin-bottom: 34px;
}
.copy p, .cards p, .contact p { color: var(--muted); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid var(--line);
}
.button.primary { background: var(--text); color: white; border-color: var(--text); }
.button.secondary { background: white; color: var(--text); }
.button:hover { transform: translateY(-1px); }
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.section-heading { max-width: 760px; margin-bottom: 34px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  background: #fff;
}
.muted {
  max-width: none;
  background: var(--soft);
  padding-left: max(clamp(20px, 5vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
  padding-right: max(clamp(20px, 5vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
}
.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.list p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}
.contact {
  text-align: center;
  max-width: 850px;
}
.contact a:not(.button) { color: var(--accent-dark); font-weight: 700; }
footer {
  padding: 30px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 840px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .split, .grid, .list { grid-template-columns: 1fr; }
  nav { gap: 14px; }
}
