* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f2b1f;
  --muted: #5a6a5a;
  --accent: #2f6b3d;
  --accent-soft: #d8e7d7;
  --sand: #efe6d8;
  --stone: #e3e0da;
  --sun: #f1d6a8;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.header {
  padding: 26px 6%;
  background: var(--sand);
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 50px 6% 60px;
  background: var(--stone);
}

.hero-text {
  flex: 1 1 320px;
  min-width: 300px;
}

.hero-visual {
  flex: 1 1 360px;
  min-width: 320px;
  background: #cbd7c6;
  border-radius: 22px;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(31, 43, 31, 0.85);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.small {
  padding: 8px 12px;
  font-size: 14px;
}

.btn:hover,
.btn:focus,
.link-action:hover,
.link-action:focus {
  opacity: 0.88;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 58px 6%;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.sun {
  background: var(--sun);
}

.section.bg-garden {
  background-color: #dfe7d9;
  background-image: url("https://images.unsplash.com/photo-1492496913980-501348b61469?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel.offset {
  margin-top: 30px;
}

.panel.card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.image-box {
  background: #cfd7c7;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
}

.image-box.tall {
  height: 360px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
}

.service-image {
  background: #c9d6c9;
  width: 140px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 140px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.floating-cta button {
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5c5;
  font-size: 15px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  z-index: 15;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer {
  padding: 42px 6%;
  background: #1d281d;
  color: #f5f2ec;
}

.footer a {
  color: #f5f2ec;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 200px;
}

.reference-list {
  margin-top: 12px;
  font-size: 14px;
}

.legal-note {
  font-size: 13px;
  color: #d5d0c8;
  margin-top: 18px;
}

.inline-quote {
  background: #ffffff;
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.wide-bg {
  background: #dbe4d5;
  border-radius: 24px;
  padding: 30px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e2e2dd;
}

.tagline {
  font-size: 18px;
  color: var(--muted);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.divider {
  height: 1px;
  background: #d6d0c7;
  margin: 22px 0;
}

@media (max-width: 720px) {
  .floating-cta {
    right: 12px;
    bottom: 12px;
  }

  .header,
  .hero,
  .section,
  .footer {
    padding-left: 7%;
    padding-right: 7%;
  }
}
