:root {
  --bg: #f7f3ec;
  --ink: #1e2930;
  --muted: #68747d;
  --card: #ffffff;
  --line: rgba(30, 41, 48, 0.12);
  --accent: #526a52;
  --accent-dark: #344934;
  --shadow: 0 24px 80px rgba(30, 41, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(82, 106, 82, 0.15), transparent 34rem),
    var(--bg);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 72px);
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 236, 0.78);
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }

main { padding: 0 clamp(20px, 5vw, 72px); }

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

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

h1, h2, h3 { margin: 0; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 8vw, 6.8rem); line-height: 0.92; max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
h3 { font-size: 1.25rem; }

.lead {
  margin: 26px 0 0;
  max-width: 660px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  line-height: 1.55;
}

.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.primary { background: var(--accent); color: white; }
.primary:hover { background: var(--accent-dark); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.55); }

.hero-card {
  background: linear-gradient(145deg, #ffffff, #efe8dc);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 34px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-kicker { color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.hero-card p { color: var(--muted); line-height: 1.55; }

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.section > p, .split > p, .contact p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
article {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
article p { color: var(--muted); line-height: 1.55; }
.contact { max-width: 720px; }
.email {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.25rem;
}
footer {
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .site-header { align-items: flex-start; gap: 12px; flex-direction: column; }
  .hero, .split, .grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 56px 0; }
  nav { gap: 16px; }
}
