@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Source+Serif+4:wght@300;400;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --ink: #1e2621;
  --muted: #5b655d;
  --accent: #2e7b5f;
  --accent-dark: #205843;
  --warm: #f0e4d2;
  --cool: #e1ece7;
  --shadow: 0 24px 48px rgba(30, 38, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #fdfbf7;
  border-right: 1px solid rgba(30, 38, 33, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-family: "Source Serif 4", serif;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(46, 123, 95, 0.12);
}

.sidebar-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.section-header {
  max-width: 640px;
}

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  margin: 0 0 12px;
}

.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, #fdfbf7 0%, #e7efe9 100%);
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 280px;
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  max-width: 360px;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46, 123, 95, 0.12);
  color: var(--accent-dark);
  font-size: 13px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-card {
  flex: 1 1 180px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(30, 38, 33, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.image-card {
  background: #fff;
  padding: 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  border-radius: 18px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(30, 38, 33, 0.08);
}

.service-card img {
  width: 56px;
  height: 56px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  color: var(--ink);
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 38, 33, 0.15);
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid rgba(32, 88, 67, 0.3);
}

.btn:hover {
  background: var(--accent-dark);
}

.layered {
  position: relative;
  padding-top: 80px;
}

.layer-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-top: -60px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(46, 123, 95, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.footer {
  padding: 40px 8vw 80px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #1f2e27;
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  z-index: 10;
}

.sticky-cta p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 90px;
  right: 16px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero img {
  max-width: 280px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.legal-text {
  max-width: 760px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    bottom: 0;
    border-radius: 0;
    left: 0;
    right: 0;
  }

  .cookie-banner {
    right: 8px;
  }
}
