* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --surface: #ffffff;
  --accent: #2d6a4f;
  --accent-dark: #1b4332;
  --text: #1f2933;
  --muted: #5f6c72;
  --soft: #efe7df;
  --highlight: #f3e1d3;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.site-header {
  padding: 20px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 12px;
}

.hero {
  display: flex;
  gap: 36px;
  padding: 40px 6vw 20px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  background: var(--surface);
  padding: 32px;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.08);
}

.hero-media {
  flex: 1 1 320px;
  background: var(--soft);
  padding: 20px;
  border-radius: 36px;
  transform: translateY(30px);
}

.hero-media img {
  width: 100%;
  height: 420px;
  border-radius: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: var(--surface);
}

.bg-soft {
  background-color: var(--soft);
}

.bg-highlight {
  background-color: var(--highlight);
}

.bg-mint {
  background-color: #e8f2ee;
}

.bg-white {
  background-color: #ffffff;
}

.section-intro {
  max-width: 720px;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: var(--soft);
  padding: 16px;
  border-radius: 24px;
}

.split .media img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(31, 41, 51, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-blocks .block {
  flex: 1 1 260px;
  background: var(--highlight);
  padding: 22px;
  border-radius: 20px;
}

.offset-blocks .block:nth-child(2) {
  background: var(--soft);
  transform: translateY(18px);
}

.offset-blocks .block:nth-child(3) {
  background: #e8f2ee;
  transform: translateY(-12px);
}

.form-wrap {
  background: var(--surface);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6dd;
  font-size: 1rem;
}

.footer {
  padding: 32px 6vw 80px;
  background: #1d2a2f;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
}

.footer-cols {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer small {
  color: #d3d3d3;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 6vw;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 6vw;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 10;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-hero {
  padding: 30px 6vw;
}

.simple-hero h1 {
  margin-bottom: 10px;
}

.simple-hero .lead {
  max-width: 640px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.contact-card {
  background: var(--surface);
  padding: 22px;
  border-radius: 20px;
}

.legal {
  max-width: 800px;
}

.media-card {
  background: var(--soft);
  padding: 16px;
  border-radius: 20px;
}

.media-card img {
  width: 100%;
  height: 260px;
  border-radius: 16px;
}

@media (max-width: 820px) {
  .hero-media {
    transform: none;
  }

  .sticky-cta {
    right: 4vw;
    left: 4vw;
    justify-content: space-between;
  }
}
