*, *::before, *::after { box-sizing: border-box; }

:root {
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --green-light: #d8f3dc;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e0e0e0;
  --bg: #f8faf8;
  --surface: #fff;
  --max: 1100px;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-dark); }
a:hover { color: var(--green); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
}

.logo img { width: 48px; height: auto; }

.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--surface);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-nav a:hover,
.site-nav a.active {
  color: var(--green);
  font-weight: 600;
}

.hero {
  position: relative;
  color: #fff;
  background: var(--green-dark);
  min-height: clamp(320px, 42vh, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 67, 50, 0.82) 0%,
    rgba(27, 67, 50, 0.5) 50%,
    rgba(27, 67, 50, 0.35) 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vh, 5rem) 0;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 2.5vw + 1rem, 3.25rem);
  line-height: 1.15;
  max-width: 18ch;
}

.hero p {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.35rem);
  max-width: 42ch;
}

.section {
  padding: 3rem 0;
  scroll-margin-top: 4rem;
}

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

.section h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  color: var(--green-dark);
}

.section h3 {
  margin: 0 0 0.5rem;
  color: var(--green-dark);
}

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

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

.card p:last-child { margin-bottom: 0; }

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green-light);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pricing-table-wrap { overflow-x: auto; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tbody tr:nth-child(even) { background: #fafcfa; }

.pricing-notes {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-notes ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.contact-block {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-block h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.contact-block p { margin: 0.35rem 0; }

.contact-block a {
  font-weight: 600;
  text-decoration: none;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  background: var(--green-dark);
  color: #e8f5e9;
  padding: 2rem 0;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.site-footer a { color: #fff; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner p { margin: 0.25rem 0; }

.footer-copy {
  opacity: 0.85;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  width: 100%;
}

.footer-privacy {
  opacity: 0.75;
  font-size: 0.8rem;
  margin-top: 1.5rem;
  width: 100%;
}

.page-intro {
  margin: 0 0 2rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .nav-toggle-label { display: block; }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .header-inner { flex-wrap: wrap; }

  .nav-toggle:checked ~ .site-nav { display: block; }

  .site-nav ul {
    flex-direction: column;
    padding: 0.5rem 0 1rem;
  }

  .hero .container { padding: 2rem 0; }
}

@media (min-width: 1400px) {
  .hero {
    min-height: clamp(420px, 48vh, 600px);
  }

  .hero .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
