:root {
  --bg: #f6f8f5;
  --ink: #1b2a20;
  --muted: #5b6b61;
  --accent: #2f7d4e;
  --accent-dark: #235f3b;
  --sand: #e8efe6;
  --sun: #f3f0d6;
  --stone: #e1e6e2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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

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

a:hover {
  text-decoration: underline;
}

header {
  padding: 22px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  color: var(--ink);
  font-weight: 500;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  display: flex;
  flex-direction: column;
  padding: 70px 6vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}

.split > div {
  flex: 1;
}

.section.sun {
  background: var(--sun);
}

.section.sand {
  background: var(--sand);
}

.section.stone {
  background: var(--stone);
}

.section.white {
  background: var(--white);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 12px 0 14px;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(27, 42, 32, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

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

.button.ghost {
  background: transparent;
  border: 1px dashed var(--muted);
  color: var(--muted);
}

.metric-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 140px;
}

.tag {
  display: inline-block;
  background: #dceadf;
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 8px;
  margin-bottom: 8px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .cards {
    flex-direction: row;
  }
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(27, 42, 32, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.stacked-card {
  margin-top: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #e1e9e3;
}

.service-item span {
  font-weight: 600;
}

.form-block {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(27, 42, 32, 0.08);
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7e1d9;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  padding: 36px 6vw 50px;
  background: var(--ink);
  color: #eef3ef;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #eef3ef;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(27, 42, 32, 0.25);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(27, 42, 32, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  margin-bottom: 6px;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 6vw 80px;
}

@media (min-width: 900px) {
  .page-grid {
    flex-direction: row;
  }
}

.page-grid > div {
  flex: 1;
}
