:root {
  --bg: #f5f1e8;
  --ink: #1f2a2c;
  --accent: #0d5c63;
  --accent-2: #f4a261;
  --surface: #fffdf8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #ffffff 0%, var(--bg) 45%);
}

a {
  color: inherit;
}

.hero {
  padding: 1rem 1.25rem 5rem;
}

.site-nav {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

.hero-content {
  max-width: 1080px;
  margin: 3.5rem auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  color: var(--accent);
}

h1 {
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.08;
  margin: 0.5rem 0 1rem;
  max-width: 16ch;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 62ch;
}

.btn {
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #247b8a);
  color: white;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid #e4ddd2;
  border-bottom: 1px solid #e4ddd2;
  max-width: 100%;
}

.section-alt .steps {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-head h2 {
  font-size: clamp(1.4rem, 4vw, 2.25rem);
  margin-bottom: 0.25rem;
}

.cards,
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card,
.step {
  background: #ffffff;
  border: 1px solid #e7e2d8;
  border-radius: 16px;
  padding: 1.1rem;
}

.step span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-2);
  font-weight: 700;
}

.footer {
  margin-top: 1.5rem;
  padding: 2.75rem 1.25rem 3rem;
  text-align: center;
  background: #111b1d;
  color: #f8faf8;
}

.footer a {
  color: #ffd5a7;
}

.small {
  opacity: 0.85;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
    border: 1px solid #cfc6b7;
    background: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-weight: 600;
  }

  .nav-links {
    position: absolute;
    top: 3.5rem;
    right: 1rem;
    background: #fffef9;
    border: 1px solid #e0d8c8;
    border-radius: 12px;
    padding: 0.75rem;
    flex-direction: column;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}
