* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f6f3;
}

a {
  color: #2b5b45;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f7f6f3;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.78rem;
  color: #5b6068;
  background: #e5e2db;
  padding: 6px 10px;
  border-radius: 16px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d8d2c6;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  flex: 1;
}

.split .media {
  flex: 1;
}

.hero {
  padding-top: 36px;
}

.hero-image,
.section-bg {
  min-height: 320px;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
}

.hero-image {
  background-color: #d9d2c8;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.section-bg.trust {
  background-color: #dbe2e7;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.section-bg.services {
  background-color: #d9d1cb;
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background-color: #e0d8cf;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e1d7cc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 600;
  color: #2f5e46;
}

.tagline {
  font-size: 0.95rem;
  color: #5b6068;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: #2b5b45;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: #d8d2c6;
  color: #2b2b2b;
}

.btn.link {
  background: transparent;
  color: #2b5b45;
  border: 1px solid #2b5b45;
}

.inline-highlight {
  background: #f0ece6;
  padding: 6px 10px;
  border-radius: 12px;
  display: inline-block;
}

.quote-band {
  background: #2b5b45;
  color: #ffffff;
  padding: 32px 6vw;
  font-size: 1.05rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #e1d7cc;
}

.form-panel label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid #d8d2c6;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-message {
  margin-top: 10px;
  color: #8a5c22;
  min-height: 22px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 22px;
  padding: 12px 14px;
  border: 1px solid #d8d2c6;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: #4b4f55;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #efede8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  display: block;
  margin-top: 16px;
  color: #5b6068;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #d8d2c6;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.center {
  text-align: center;
}

.media img {
  width: 100%;
  height: 320px;
}

.about-hero {
  background-color: #d6d2cc;
  background-image: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?w=1400&q=80");
}

.about-process {
  background-color: #e0d7cf;
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=800&q=80");
}

.services-hero {
  background-color: #d5dadd;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.contact-hero {
  background-color: #d7dbe0;
  background-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?w=1400&q=80");
}

.thanks-hero {
  background-color: #d5d9dc;
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

.service-card-1 img {
  background-color: #e3ddd6;
}

.service-card-2 img {
  background-color: #dfe5e8;
}

.service-card-3 img {
  background-color: #e2d9d0;
}

.service-card-4 img {
  background-color: #dfe0e6;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-image,
  .section-bg {
    min-height: 420px;
  }
}
