* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2422;
  --muted: #5f6b64;
  --accent: #1e7a5b;
  --accent-dark: #155a44;
  --sand: #f5f2ed;
  --mist: #eef4f2;
  --sun: #d2b566;
  --stone: #d9dedb;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--stone);
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  padding: 70px 6vw;
}

.section-contrast {
  background: var(--mist);
}

.section-sand {
  background: var(--sand);
}

.section-deep {
  background: var(--ink);
  color: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 25, 20, 0.18);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.section-deep p {
  color: #d4ded9;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-link:hover {
  border-color: var(--accent);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(21, 40, 30, 0.12);
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-left: 3px solid var(--sun);
  background: #ffffff;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(19, 28, 24, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
  background: var(--mist);
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  padding: 40px 6vw;
  background: var(--ink);
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-links a {
  color: #d4ded9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.85rem;
}

.cookie-btn.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(30, 122, 91, 0.85), rgba(21, 90, 68, 0.55));
  color: #ffffff;
  padding: 28px;
  border-radius: 18px;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #ffffff;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 45%;
  }
}
