:root {
  --bg: #f5f1ea;
  --surface: #ffffff;
  --text: #1d2430;
  --muted: #667085;
  --accent: #6f5337;
  --accent-dark: #4e3825;
  --border: #e6ded2;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(111,83,55,.10), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; }
header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.brand {
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.02em;
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
}
.links a:hover { color: var(--accent-dark); }
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px;
}
.hero {
  min-height: 66vh;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 42px;
  align-items: center;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 14px;
}
h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h2 {
  margin-top: 44px;
  font-size: 1.5rem;
}
p { max-width: 780px; }
.lead {
  margin-top: 24px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
}
.hero-card, .card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(54, 42, 29, .08);
}
.hero-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.hero-card p { color: var(--muted); }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 800;
}
.button.primary {
  background: var(--accent);
  color: #fff;
}
.button:hover { transform: translateY(-1px); }
.content-page {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(26px, 5vw, 56px);
}
.content-page h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}
.content-page p, .content-page li { color: #3e4653; }
footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 48px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
small { color: var(--muted); }
@media (max-width: 820px) {
  nav { align-items: flex-start; flex-direction: column; padding-top: 18px; padding-bottom: 18px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  main { padding-top: 50px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
}