* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c241c;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #fdfcf9;
  border-bottom: 1px solid #e1e1d8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a:hover,
.btn:hover,
.service-select button:hover,
.sticky-cta:hover {
  background: #2f5f3c;
  color: #fff;
}

.ad-label {
  font-size: 0.78rem;
  background: #1c241c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  padding: 70px 6%;
  background: #f6f5f2;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.content {
  flex: 1;
  min-width: 260px;
}

.media {
  flex: 1;
  min-width: 260px;
  background: #dfe7dc;
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  color: #4a5c47;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: #254832;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background: #fdfcf9;
}

.section.texture {
  background: #f3f7f1;
  position: relative;
  overflow: hidden;
}

.section.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e1e1d8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-wrap {
  background: #e3e7df;
  border-radius: 12px;
  overflow: hidden;
}

.card .price {
  font-weight: 700;
  color: #254832;
}

.inline-link {
  color: #254832;
  font-weight: 600;
  border-bottom: 1px solid #254832;
}

.testimonial {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e1e1d8;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-select button {
  text-align: left;
  border: 1px solid #cfd6c5;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.service-select button.is-active {
  background: #254832;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6c5;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: #4a5c47;
}

.form-status {
  font-size: 0.9rem;
  color: #8b2b2b;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #254832;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1c241c;
  color: #f7f5f0;
}

.footer a {
  color: #f7f5f0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  display: block;
  margin-top: 14px;
  color: #c7d1c2;
}

.policy-image {
  margin-top: 30px;
}

.policy-image .img-wrap {
  background: #e2e8dd;
  border-radius: 16px;
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #d7dece;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }
  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}

.home-texture::before {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.about-texture::before {
  background-image: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1400&q=80");
}

.services-texture::before {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
}
