* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1c1b19;
  --muted: #5a5956;
  --accent: #2f6f5e;
  --accent-2: #c07a3a;
  --surface: #ffffff;
  --warm: #e7d7c3;
  --shadow: 0 18px 50px rgba(28, 27, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid rgba(28, 27, 25, 0.2);
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 28px;
}

.hero-copy {
  flex: 1 1 340px;
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
  border-radius: 22px;
  align-self: center;
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-image {
  flex: 1 1 360px;
  background-color: #d6d4cf;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  transform: translateY(18px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47, 111, 94, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(47, 111, 94, 0.4);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.inline-link:hover {
  color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-card {
  flex: 1 1 320px;
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-card {
  flex: 1 1 320px;
  background-color: #d8d2c9;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
}

.offset {
  margin-left: auto;
  max-width: 520px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list strong {
  font-size: 1rem;
}

.background-section {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  background-color: #3a3a3a;
}

.background-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1761426114135-b771606bcf4c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.background-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 220px;
  background: var(--warm);
  padding: 18px;
  border-radius: 18px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 27, 25, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  background: #1d1c1a;
  color: #f6f3ef;
  padding: 30px 6vw 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer p {
  margin: 0 0 10px;
  color: #d8d5d0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 30;
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 340px;
  z-index: 40;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(47, 111, 94, 0.3);
}

.page-header {
  padding: 40px 6vw 10px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.content-section {
  padding: 20px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    transform: none;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
