* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2b1f;
  --soft-ink: #3a4a3f;
  --mint: #3e7d5a;
  --moss: #1f4f3a;
  --fog: #f2f6f2;
  --sand: #f7f1e6;
  --clay: #eadfcd;
  --sky: #d9eef1;
  --glow: #f0f6ef;
  --accent: #e5b65a;
  --radius: 28px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 12px;
}

.brand-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.brand-line h1,
.brand-line h2 {
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 0.95rem;
  color: var(--soft-ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--mint);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 48px;
}

.hero-split .hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-split h3 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: white;
}

.btn.outline {
  background: transparent;
  color: var(--mint);
}

.btn.soft {
  background: var(--accent);
  border-color: var(--accent);
  color: #1b1b1b;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 6vw;
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-inner.reverse {
  flex-direction: column-reverse;
}

.split-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-copy h4 {
  font-size: 1.9rem;
}

.meta-line {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}

.tone-fog {
  background: var(--fog);
}

.tone-sand {
  background: var(--sand);
}

.tone-sky {
  background: var(--sky);
}

.tone-clay {
  background: var(--clay);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 50px rgba(34, 56, 40, 0.08);
}

.card img {
  border-radius: 20px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(30, 60, 40, 0.15);
  background: #fff;
}

.service-price {
  font-weight: 700;
  color: var(--moss);
}

.inline-link {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 50px rgba(31, 79, 58, 0.12);
}

.form-panel label {
  font-size: 0.9rem;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(30, 60, 40, 0.2);
  font-family: inherit;
}

.split-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.site-footer {
  margin-top: auto;
  padding: 40px 6vw 50px;
  background: #1e2a21;
  color: #f3f6f3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  padding: 40px 6vw 20px;
}

.page-title h3 {
  font-size: 2.2rem;
}

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6vw 50px;
}

.note-block {
  padding: 16px 18px;
  background: var(--glow);
  border-radius: 16px;
  border-left: 4px solid var(--mint);
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(30, 60, 40, 0.12);
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .hero-split .hero-text,
  .hero-split .hero-media {
    flex: 1;
  }

  .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .split-inner.reverse {
    flex-direction: row-reverse;
  }

  .split-copy,
  .split-media {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card,
  .service-item {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 18px);
  }

  .simple-stack {
    max-width: 860px;
  }
}
