* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1c2222;
  background: #f6f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #eef0ea;
  border-bottom: 1px solid #d6dbd1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 4px 10px;
  background: #dbe6d4;
  border-radius: 999px;
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.main {
  flex: 1;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 60px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.panel-note {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(23, 30, 26, 0.08);
}

.panel-note ul {
  margin: 0;
  padding-left: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 0;
}

.hero-sub {
  font-size: 1.05rem;
  color: #3a4542;
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #1c5a43;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.light {
  background: #e4efe6;
  color: #1c2222;
}

.button.text {
  background: transparent;
  color: #1c5a43;
  padding: 0;
}

.image-card {
  background: #d7ddd4;
  border-radius: 18px;
  overflow: hidden;
}

.bg-sage {
  background: #cfd8cf;
}

.bg-mist {
  background: #d6ddd6;
}

.bg-sand {
  background: #d2d6d0;
}

.bg-stone {
  background: #d8dfd6;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(25, 32, 28, 0.08);
}

.service-card img {
  width: 120px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  background: #d7ddd4;
}

.price {
  font-weight: 700;
  color: #1c5a43;
  margin-top: 6px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flow-step {
  background: #fdfdfb;
  border-left: 4px solid #1c5a43;
  padding: 12px 16px;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(23, 30, 26, 0.1);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell label {
  font-size: 0.9rem;
  color: #3a4542;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd5c8;
  font-size: 0.95rem;
  font-family: inherit;
  background: #f7f9f6;
}

.form-help {
  font-size: 0.85rem;
  color: #4a5753;
}

.section-heading {
  font-size: 1.6rem;
  margin: 0;
}

.inline-link {
  color: #1c5a43;
  border-bottom: 1px solid rgba(28, 90, 67, 0.3);
}

.site-footer {
  padding: 32px 6vw;
  background: #1d2322;
  color: #e9efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col p,
.footer-col li {
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1c5a43;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fdfdfb;
  border-top: 1px solid #d6dbd1;
  padding: 16px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
