* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2b24;
  --muted: #4b5a53;
  --sand: #f2efe8;
  --leaf: #4c8f68;
  --moss: #2f6f4e;
  --sun: #f7c66c;
  --mist: #e6efe9;
  --stone: #d6d2c7;
  --shadow: rgba(28, 43, 36, 0.1);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #fbfbf8;
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.split-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--leaf);
}

.hero {
  background: var(--mist);
  border-radius: 32px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--leaf);
  color: white;
  border-color: var(--leaf);
}

.btn.secondary {
  background: white;
}

.btn:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 20;
  box-shadow: 0 12px 30px var(--shadow);
}

.section {
  padding: 3rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.asym-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

.asym-card {
  background: white;
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 14px 30px var(--shadow);
}

.offset {
  transform: translateX(0);
}

.highlight {
  background: var(--sand);
}

.data-strip {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--ink);
  color: white;
  padding: 2rem;
  border-radius: 24px;
}

.data-item span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.image-stack {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.image-stack img {
  width: min(220px, 45%);
  border-radius: 20px;
  background: white;
  padding: 0.5rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border-radius: 24px;
  background: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 24px var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--moss);
  font-size: 1.2rem;
}

.pill {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-panel {
  background: var(--stone);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid #c7c3b8;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--moss);
  font-weight: 600;
  border-bottom: 2px solid var(--sun);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: white;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 8px 18px var(--shadow);
}

.testimonial span {
  font-weight: 600;
}

.footer {
  padding: 3rem 0 2rem;
  background: var(--ink);
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.note {
  background: var(--sun);
  padding: 0.8rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}

@media (min-width: 800px) {
  .split-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1.2;
  }

  .hero-media {
    flex: 1;
  }

  .asym-row {
    flex-direction: row;
  }

  .offset {
    transform: translateX(40px);
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .data-strip {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-col {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 1.5rem;
  }
}
