:root {
  --bg: #f3faf7;
  --surface: #ffffff;
  --text: #123047;
  --muted: #2f5f57;
  --primary: #0b5fa5;
  --primary-hover: #094f8a;
  --border: #cfe7dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.brand {
  font-weight: 800;
}

.hero {
  padding: 4rem 0 3rem;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: #e8f5ef;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  color: #1d8f64;
  margin: 0.25rem 0 0.5rem;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-hover);
}

.btn-small {
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #1d8f64;
  color: #1d8f64;
}

.intake-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  max-width: 720px;
}

label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #b9dccc;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.intake-form button {
  margin-top: 1rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.9rem;
}

.centered {
  text-align: center;
  max-width: 660px;
  margin: 3rem auto;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.5rem;
  }
}