* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1e2a24;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0 12px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.82rem;
  color: #5a6b5f;
  background: #e8efe9;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: center;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

nav a {
  font-weight: 600;
  font-size: 0.96rem;
}

.hero {
  background: #1d2a24;
  color: #f7f7f4;
  padding: 80px 0 120px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: #e4ece4;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  background: #cfe3d4;
  color: #1d2a24;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #cfe3d4;
  color: #cfe3d4;
  background: transparent;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #eef2ed;
}

.section.dark {
  background: #1f2b25;
  color: #f2f6f2;
}

.meadow-bg {
  background: linear-gradient(rgba(20, 30, 25, 0.62), rgba(20, 30, 25, 0.62)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80")
      center/cover no-repeat;
  color: #f1f6f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.offset-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(20, 40, 30, 0.12);
  margin-left: -40px;
}

.offset-box.alt {
  margin-left: 0;
  margin-right: -40px;
  background: #f9faf7;
}

.image-frame {
  background: #d7e2d8;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.image-tall {
  height: 360px;
}

.image-wide {
  height: 280px;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stack .card {
  flex: 1 1 240px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(22, 38, 30, 0.08);
}

.card img {
  border-radius: 14px;
  height: 170px;
  width: 100%;
  background-color: #d7e2d8;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2d5b3a;
}

.quote {
  border-left: 3px solid #cfe3d4;
  padding-left: 16px;
  font-style: italic;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(20, 40, 30, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd7cc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #151f1a;
  color: #e6efe7;
  padding: 40px 0;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.footer small {
  color: #b7c6bc;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2b25;
  color: #f3f6f0;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(15, 25, 20, 0.3);
  z-index: 5;
}

.sticky-cta a {
  color: #1f2b25;
  background: #cfe3d4;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(20, 40, 30, 0.2);
  max-width: 320px;
  z-index: 6;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-accept {
  background: #cfe3d4;
  color: #1f2b25;
}

.cookie-reject {
  background: #e5e1dc;
  color: #1f2b25;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero h1 {
  font-size: 2.2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-grid .card {
  flex: 1 1 280px;
}

.legal-block {
  background: #f7f7f2;
  padding: 24px;
  border-radius: 16px;
  margin-top: 18px;
}

.inline-cta {
  font-weight: 700;
  color: #2d5b3a;
  text-decoration: underline;
}

.services-highlight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spaced-top {
  margin-top: 28px;
}

.services-highlight .card {
  flex-direction: row;
  gap: 18px;
  align-items: center;
}

.services-highlight img {
  width: 160px;
  height: 120px;
  border-radius: 14px;
}

@media (max-width: 860px) {
  .offset-box,
  .offset-box.alt {
    margin: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
