* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7f2;
  --dark: #13241a;
  --accent: #3b7c4a;
  --accent-soft: #cfe6d3;
  --earth: #7b6b4b;
  --light: #ffffff;
  --muted: #5f6b62;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 16px;
  gap: 20px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 14px 32px rgba(19, 36, 26, 0.25);
  z-index: 20;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 60px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
  position: relative;
}

.section.alt {
  background: var(--light);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--earth);
}

.section h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(19, 36, 26, 0.08);
  align-self: flex-start;
}

.offset-card.shift {
  margin-left: 8vw;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature span {
  font-weight: 700;
  color: var(--accent);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack img {
  border-radius: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: var(--accent-soft);
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--dark);
}

.testimonial {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.cta-panel {
  background: var(--dark);
  color: var(--light);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-panel a {
  color: var(--light);
  text-decoration: underline;
}

.form-card {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(19, 36, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d4ca;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  padding: 40px 6vw 50px;
  background: #0f1c14;
  color: #e7efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer small {
  color: #b9c8bf;
}

.policy {
  max-width: 880px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 12px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(19, 36, 26, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-text {
    flex: 1;
  }

  .hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .nav-links {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .image-stack {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .feature-row {
    flex-direction: row;
  }

  .feature {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid div {
    flex: 1;
  }
}
