:root {
  --bg: #f7f2ea;
  --surface: #fffaf2;
  --text: #20201d;
  --muted: #686357;
  --brand: #315b42;
  --brand-dark: #203d2d;
  --accent: #d19a35;
  --line: #e5dac8;
  --shadow: 0 20px 50px rgba(44, 38, 27, 0.12);
}

* { 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;
  background: var(--bg);
  color: var(--text);
  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: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--brand-dark);
}
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}
nav a:hover { color: var(--brand); }

.hero, .section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: center;
  min-height: 78vh;
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.35rem, 6vw, 5rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}
.actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.75rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.primary { background: var(--brand); color: white; }
.primary:hover { background: var(--brand-dark); }
.secondary { color: var(--brand-dark); border-color: var(--line); background: var(--surface); }
.hero-card, .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-card { padding: 2rem; }
.hero-logo {
  display: block;
  width: min(100%, 280px);
  margin: 0 auto 1.25rem;
  border-radius: 24px;
}

.hero-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.card { padding: 1.5rem; box-shadow: none; }
.card p, .split p, .contact p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
}
.notice {
  padding: 1rem;
  border-left: 4px solid var(--accent);
  background: rgba(209, 154, 53, 0.12);
  border-radius: 12px;
}
.contact {
  text-align: center;
  background: var(--brand-dark);
  color: white;
  border-radius: 36px;
  margin-bottom: 3rem;
}
.contact .eyebrow, .contact p { color: rgba(255,255,255,0.78); }
.contact .primary { background: white; color: var(--brand-dark); }
footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
