.root {
  --ink: #1f2a1f;
  --muted: #4d5a4f;
  --accent: #3a7d5b;
  --accent-dark: #2f5f48;
  --paper: #f7f4ef;
  --sand: #efe7dc;
  --stone: #e4e1d9;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a1f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #2f5f48;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 22px 6vw 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #4d5a4f;
  background: #efe7dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
}

.hero {
  padding: 26px 6vw 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.soft {
  background: #efe7dc;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #5f6d62;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

.lead {
  font-size: 18px;
  color: #4d5a4f;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  background: #3a7d5b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #2f5f48;
  border: 1px solid #2f5f48;
}

.btn:hover,
.btn:focus {
  background: #2f5f48;
  color: #fff;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #2f5f48;
  color: #fff;
}

.img-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: #e4e1d9;
  min-height: 220px;
  display: flex;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 50px 6vw;
}

.section.muted {
  background: #efe7dc;
}

.section.dark {
  background: #1f2a1f;
  color: #f7f4ef;
}

.section.dark a {
  color: #f7f4ef;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background: #e4e1d9;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2f5f48;
}

.inline-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.bg-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-1 {
  background-image: url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1400&q=80");
  background-color: #d8d4c7;
}

.bg-2 {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #d6d9d5;
}

.bg-3 {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-color: #e2dfd7;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8cfc6;
  font-size: 15px;
  width: 100%;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.service-row .details {
  flex: 1 1 280px;
}

.service-row .price-tag {
  font-size: 18px;
  font-weight: 700;
  color: #2f5f48;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2f5f48;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: #f7f4ef;
  color: #1f2a1f;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  background: #fff;
}

footer {
  padding: 30px 6vw 70px;
  background: #efe7dc;
  color: #4d5a4f;
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plain-email {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: #1f2a1f;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.quote {
  font-style: italic;
  font-size: 16px;
}

.inline-testimonial {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  margin: 12px 0;
}

.two-col {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.two-col .column {
  flex: 1 1 260px;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
