:root {
  --bg: #ffffff;
  --surface: #f7f7f4;
  --ink: #2c2c2c;
  --muted: #6b6b66;
  --line: #e6e6e0;
  --accent: #8f9258;
  --accent-dark: #6f7244;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(960px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.75rem;
  padding-block: 0.85rem;
}

.logo {
  flex: 0 1 auto;
}

.logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.lede {
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font: inherit;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-dark);
}

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
  background: #ececd8;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
}

.about {
  background: var(--surface);
}

.about p {
  max-width: 58ch;
  color: var(--muted);
}

.consult-list {
  max-width: 58ch;
  margin-top: 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.consult-list li + li {
  margin-top: 0.45rem;
}

.consult-list a {
  color: var(--accent-dark);
  font-weight: 600;
}

.consult-list a:hover {
  text-decoration: underline;
}

.contact p {
  color: var(--muted);
}

.email {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.email:hover {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .nav {
    min-height: 5rem;
    padding-block: 0.7rem;
  }

  .logo img {
    height: 52px;
    max-width: min(210px, 48vw);
  }

  .nav-links {
    gap: 0.85rem;
    font-size: 0.88rem;
  }

  .email {
    font-size: 1.2rem;
  }
}
