:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-alt: #eef7f3;
  --text: #17312b;
  --muted: #5a6f69;
  --border: #d7e4de;
  --accent: #1f7a56;
  --accent-dark: #14523a;
  --shadow: 0 10px 30px rgba(20, 82, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--accent-dark);
}

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

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(780px, 100%);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero,
.section {
  padding: 3rem 0;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef7f3 100%);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h2 {
  font-size: 1.2rem;
}

.lead,
.muted,
.note,
.footer-text,
.card p {
  color: var(--muted);
}

.lead {
  max-width: 52rem;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.button-secondary:hover {
  background: var(--surface);
  color: var(--text);
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.card-accent {
  background: var(--surface-alt);
}

.list {
  margin: 0;
  padding-left: 1.15rem;
}

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

.price {
  margin: 0 0 0.35rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}

.contact-line {
  font-size: 1.05rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 0 2rem;
}

.footer-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .two-column,
  .three-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 2rem 0;
  }
}
