* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2422;
  background: #f6f4ef;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 240px;
}

.brand span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4d5b57;
}

.brand strong {
  font-size: 28px;
}

.nav-split {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: flex-end;
  max-width: 520px;
}

.nav-split a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 20px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 44px;
  margin: 0;
  line-height: 1.1;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-media {
  flex: 1 1 280px;
  align-self: center;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -20px 30px 40px -20px;
  border: 2px solid #9bb0a6;
  z-index: -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #214436;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-light {
  background: transparent;
  border: 1px solid #214436;
  color: #214436;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.section-offset {
  margin-left: 6vw;
  margin-right: 2vw;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-dark {
  background: #1f2c29;
  color: #f6f4ef;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split > div {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-left: 4px solid #8aa298;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 120px;
  object-fit: cover;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7a75;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d7ddd9;
}

.price-item strong {
  min-width: 220px;
}

.price {
  font-weight: 700;
  color: #214436;
}

.form-block {
  background: #ffffff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 10px;
  border: 1px solid #cdd4cf;
  border-radius: 6px;
  font-size: 14px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row label {
  flex: 1 1 200px;
}

.form-status {
  font-size: 13px;
  color: #214436;
}

.cta-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #2f5a49;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 20;
}

.footer {
  padding: 40px 6vw;
  background: #0f1412;
  color: #f6f4ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid #cdd4cf;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 30;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.cookie-accept {
  background: #214436;
  color: #fff;
}

.cookie-reject {
  background: #e5e2dc;
}

.page-title {
  padding: 40px 6vw 10px;
}

.page-title h1 {
  margin: 0;
  font-size: 36px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-item {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid #d8dfda;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .nav-split {
    justify-content: flex-start;
  }

  .section-offset {
    margin-left: 0;
    margin-right: 0;
  }

  .cta-float {
    right: 12px;
    bottom: 12px;
  }
}
