* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2420;
  background: #f6f7f4;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #eef2ec;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.ad-label {
  font-size: 0.85rem;
  color: #3a4a40;
  background: #dbe7dd;
  padding: 8px 12px;
  border-radius: 10px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 40px 6vw 60px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 29, 22, 0.55);
}

.hero-content,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-side {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f0d89b;
  color: #1c2420;
  font-weight: 600;
}

.button.secondary {
  background: #ffffff;
  color: #1c2420;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.section-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(20, 30, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: #dfe6df;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 700;
  color: #2f4c3a;
}

.section-highlight {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 16, 0.55);
}

.section-highlight .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd6cf;
  font-size: 1rem;
  font-family: inherit;
}

footer {
  margin-top: auto;
  background: #1b241f;
  color: #f1f3ef;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-note {
  font-size: 0.9rem;
  color: #c4cec7;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  background: #f0d89b;
  color: #1c2420;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(20, 30, 25, 0.2);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.content-narrow {
  max-width: 860px;
}

.list-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-checks span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.split-panel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split-panel .panel {
  flex: 1 1 280px;
}

.notice {
  background: #e9efe9;
  border-radius: 16px;
  padding: 20px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.small-title {
  font-size: 1.4rem;
  margin: 0;
}
