* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #5b6b61;
  --accent: #2f7a4f;
  --accent-dark: #235a3a;
  --sand: #f5f0e8;
  --leaf: #e8f1ea;
  --stone: #e2e7e2;
  --sky: #eef4f7;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
  gap: 18px;
  flex-wrap: wrap;
}

.nav-brand {
  font-size: 1.2rem;
  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;
  color: var(--muted);
  background: var(--leaf);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  min-height: 70vh;
}

.hero-content,
.hero-visual {
  flex: 1 1 50%;
  min-height: 320px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6vw;
  background: var(--sand);
  gap: 20px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1.1;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  background: #cfe3d4;
}

.hero-visual .image-frame {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:focus {
  outline: 2px solid #1e3f2a;
  outline-offset: 2px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.split-section .split-text,
.split-section .split-media {
  flex: 1 1 50%;
  min-height: 280px;
}

.split-section .split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 6vw;
  gap: 18px;
}

.split-section .split-text h2,
.split-section .split-text h3 {
  font-size: 1.7rem;
}

.split-section .split-text p {
  color: var(--muted);
}

.split-section .split-media {
  background: #d4e1d6;
}

.image-frame {
  width: 100%;
  height: 100%;
  background-color: #d6e2d8;
  overflow: hidden;
}

.section-alt {
  background: var(--leaf);
}

.section-sky {
  background: var(--sky);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.list-inline span {
  background: #ffffff;
  border: 1px solid var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--stone);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--stone);
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 32px 6vw;
  background: #1c2720;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #ffffff;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  color: #cdd7cf;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 50, 32, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  padding: 42px 6vw 20px;
  font-size: 2rem;
}

.text-block {
  padding: 0 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.contact-stack strong {
  color: var(--ink);
}

.spacer {
  height: 22px;
}

@media (max-width: 900px) {
  .hero-content,
  .hero-visual,
  .split-section .split-text,
  .split-section .split-media {
    flex: 1 1 100%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
