:root {
  --ink: #1f2a2e;
  --muted: #5b6b73;
  --accent: #2b7a78;
  --accent-2: #e08e45;
  --bg: #f6f4f0;
  --surface: #ffffff;
  --soft: #e8ece9;
  --shadow: 0 18px 45px rgba(18, 33, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.header {
  padding: 28px 0 18px;
}

.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--ink);
}

.ad-label {
  background: var(--soft);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
}

.hero-text {
  flex: 1.1;
  background: var(--surface);
  padding: 38px;
  box-shadow: var(--shadow);
  border-radius: 24px;
  transform: translateY(18px);
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-top: 0;
}

.hero-text p {
  color: var(--muted);
}

.hero-media {
  flex: 0.9;
  background: #d9e2db;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #256c69;
}

.btn-secondary {
  background: var(--accent-2);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #c97834;
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
}

.link-inline:hover,
.link-inline:focus {
  color: #1f5d5b;
}

.section {
  margin-top: 70px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.section-soft {
  background: var(--surface);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1.1;
}

.asym-image {
  flex: 0.9;
  background: #dfe6e1;
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-image {
  background: #d7e0da;
  height: 160px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.banner-section {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
  border-radius: 28px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 32, 35, 0.45);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.form-panel {
  background: var(--surface);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5dcd8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid #d6ddd9;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer small {
  max-width: 520px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  background: #edf1ed;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.page-hero .page-hero-text {
  flex: 1.2;
}

.page-hero .page-hero-media {
  flex: 0.8;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe7e1;
  min-height: 220px;
}

.contact-blocks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.legal-text {
  background: var(--surface);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .hero,
  .asym-row,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 96px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
