* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a1f;
  --muted: #4b5a4b;
  --soft: #eef2ea;
  --accent: #3a6b3f;
  --accent-2: #7aa35c;
  --sand: #f6f3ed;
  --deep: #243326;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw;
  position: relative;
  z-index: 2;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 80px;
  position: relative;
  min-height: 480px;
  color: #fff;
  background-color: #233225;
  background-size: cover;
  background-position: center;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 35, 20, 0.82), rgba(18, 35, 20, 0.45));
}

.hero-content {
  position: relative;
  max-width: 560px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #e5efe1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 24px;
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.section {
  padding: 70px 6vw;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 280px;
}

.panel.card {
  background: var(--sand);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(33, 48, 35, 0.08);
}

.offset {
  margin-top: -40px;
}

.image-shell {
  background: #dfe8d9;
  border-radius: 16px;
  overflow: hidden;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(31, 42, 31, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-selector button {
  background: var(--soft);
  border: 1px solid #d7e1d3;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.service-selector button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #c9d3c4;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

button[type="submit"] {
  background: var(--deep);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.testimonial {
  background: var(--soft);
  padding: 16px;
  border-radius: 12px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f2a1f;
  color: #d9e3d5;
}

.footer a {
  color: #d9e3d5;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer small {
  display: block;
  margin-top: 20px;
  color: #b9c3b6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.page-hero {
  padding: 60px 6vw 40px;
  background: var(--sand);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(33, 48, 35, 0.08);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-band {
  background: var(--soft);
  padding: 28px;
  border-radius: 14px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80");
  background-color: #2c3b2e;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 38, 26, 0.65);
}

.bg-insight .panel,
.bg-insight .section-title,
.bg-insight p {
  position: relative;
  z-index: 1;
}

.page-about-hero {
  background-image: url("https://images.unsplash.com/photo-1492496913980-501348b61469?w=1400&q=80");
  background-color: #2a3a2c;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 41, 30, 0.7);
}

.page-about-hero * {
  position: relative;
  z-index: 1;
}

.page-services-hero {
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
  background-color: #2a3b2d;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 31, 0.68);
}

.page-services-hero * {
  position: relative;
  z-index: 1;
}

.page-contact-hero {
  background-image: url("https://images.pexels.com/photos/7283/garden.jpg");
  background-color: #2a3a2c;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 40, 29, 0.7);
}

.page-contact-hero * {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
  .hero {
    padding: 40px 6vw 60px;
  }
}
