* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e2320;
  background: #f6f4ef;
  line-height: 1.6;
}

a {
  color: #1f5a3a;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4b5b51;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: #6d6f68;
  padding: 4px 10px;
  border: 1px solid #c7cfc4;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.media {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7dfd3;
  min-height: 240px;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.layer {
  padding: 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(26, 30, 26, 0.08);
}

.layer.alt {
  background: #eef4f0;
}

.layer.dark {
  background: #1f2a23;
  color: #f7f6f2;
}

.layer.dark a {
  color: #e8f2e3;
}

.bg-field {
  background-image: linear-gradient(
      rgba(15, 22, 18, 0.45),
      rgba(15, 22, 18, 0.45)
    ),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
}

.bg-work {
  background-image: linear-gradient(
      rgba(20, 26, 22, 0.4),
      rgba(20, 26, 22, 0.4)
    ),
    url("https://images.unsplash.com/photo-1458014854819-5c0d1fc0a1b9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f2;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 12px;
  background: #e2efe6;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f5a3a;
  background: #1f5a3a;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  color: #1f5a3a;
}

.btn.light {
  background: #f7f6f2;
  color: #1f2a23;
  border-color: #f7f6f2;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(27, 32, 28, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 600;
  color: #1f5a3a;
}

.divider {
  height: 1px;
  background: #d7dfd3;
  margin: 28px 0;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #2f3b33;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c6d2c7;
  background: #fff;
  font-size: 15px;
}

footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #d7dfd3;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f5a3a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(20, 25, 20, 0.25);
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(28, 32, 28, 0.2);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 38px;
  line-height: 1.1;
}

.section-title {
  font-size: 26px;
}

.muted {
  color: #5b665f;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 14px;
  background: #eef4f0;
}
