:root {
  --bg: #f5f3ee;
  --ink: #132018;
  --muted: #4a5a4f;
  --accent: #2f6a4f;
  --accent-dark: #1d4634;
  --warm: #f0e7db;
  --sand: #e7dccb;
  --leaf: #d7e7d1;
  --card: #ffffff;
  --border: #d7d1c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f1a16;
  color: #eef4f0;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.3;
  padding: 8px 10px;
  background: #1a2b24;
  border-radius: 6px;
  color: #cde2d5;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-nav a {
  color: #e7efe9;
  font-size: 14px;
}

.side-meta {
  font-size: 13px;
  color: #b7c6bc;
  line-height: 1.5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 420px;
  padding: 70px 60px;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #e3e7e0;
  position: relative;
}

.hero-overlay {
  background: rgba(245, 243, 238, 0.9);
  padding: 40px;
  max-width: 640px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 36px;
}

.hero p {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: var(--accent-dark);
}

.button.light {
  background: #e7efe9;
  color: #21382c;
}

.section {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--warm);
}

.section.leaf {
  background: var(--leaf);
}

.section.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-block {
  flex: 1;
  background: var(--sand);
  padding: 14px;
  border-radius: 10px;
}

.media-block img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  background: #d1d8d0;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
}

.cta-panel {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f3f34;
  padding: 40px;
  border-radius: 16px;
  color: #ffffff;
}

.cta-panel .button {
  background: #ffffff;
  color: #0f1a16;
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 13px;
  color: var(--muted);
}

.form-card input,
.form-card select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.form-message {
  font-size: 13px;
  color: var(--accent-dark);
}

.footer {
  padding: 30px 60px 60px;
  background: #0f1a16;
  color: #d5e3da;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #d5e3da;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #a8b8ae;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #0f1a16;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta.hidden {
  display: none;
}

.sticky-cta button {
  background: #ffffff;
  color: #0f1a16;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1b2b24;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #ffffff;
  color: #0f1a16;
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.page-title {
  font-size: 30px;
  margin: 0;
}

.simple-hero {
  padding: 60px;
  background: var(--warm);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.image-frame {
  background: #d9e2d4;
  padding: 12px;
  border-radius: 10px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.thanks-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 640px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 40px 24px;
  }

  .section {
    padding: 40px 24px;
  }

  .footer {
    padding: 30px 24px 60px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
