* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e2a22;
  --olive: #4d6a52;
  --sand: #f4f0e6;
  --stone: #d8ddd2;
  --leaf: #7ea36b;
  --night: #0f1512;
  --sun: #f5b76f;
  --paper: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.hero {
  padding: 40px 6vw 60px;
  background: linear-gradient(120deg, var(--sand), #fff);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--olive);
}

.title {
  font-size: 2.4rem;
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: #2f3b33;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--night);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border-color: var(--night);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #f5f5f5;
}

.section.dark a {
  color: var(--sun);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--olive);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #fdfdfb;
  border-left: 4px solid var(--leaf);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px dashed var(--leaf);
  border-radius: 16px;
  background: #fbfff7;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--sun);
  color: var(--night);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 30px 6vw;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--night);
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--sun);
  color: var(--night);
}

.cookie-reject {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.page-header {
  padding: 40px 6vw 20px;
  background: var(--sand);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 6vw;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fdf9f1;
  border-radius: 16px;
}

@media (min-width: 880px) {
  .split,
  .split.reverse,
  .two-column {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse .split-content {
    order: 2;
  }

  .split.reverse .split-media {
    order: 1;
  }

  .cards,
  .service-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
