* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f1c;
  --muted: #5f6b64;
  --bg: #f6f5f1;
  --accent: #2f6f4e;
  --accent-dark: #1f4b35;
  --sand: #e8e2d5;
  --moss: #dde7df;
  --sky: #d7e4f2;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.header {
  padding: 28px 6vw 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f0eee8;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0 6vw;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 12px 24px 0;
}

.hero-media {
  flex: 1 1 360px;
  background: var(--moss);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 4;
}

.sticky-cta a {
  padding: 12px 18px;
  background: #243c2f;
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.panel.moss {
  background: var(--moss);
}

.panel.sand {
  background: var(--sand);
}

.offset {
  margin-top: -40px;
}

.image-frame {
  background: var(--sky);
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd3cd;
  font-size: 1rem;
  font-family: inherit;
}

.form-message {
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.footer {
  padding: 32px 6vw 48px;
  background: #111614;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #cfe2d8;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.simple-hero {
  padding: 0 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.simple-hero .panel {
  flex: 2 1 360px;
}

.simple-hero .image-frame {
  flex: 1 1 260px;
  min-height: 220px;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    padding: 0 6vw 24px;
  }

  .sticky-cta a {
    display: inline-flex;
  }
}
