* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f4f2ee;
  --ink: #1f2a24;
  --muted: #5e6a63;
  --accent: #2f6b4f;
  --accent-soft: #dfeee3;
  --sand: #efe6d6;
  --stone: #d6d0c5;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #ffffff;
  border-right: 1px solid #e4e0da;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 8px;
  border-radius: 10px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.side-nav a {
  padding: 6px 4px;
}

.side-cta {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 40px 56px;
}

.section {
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.hero {
  min-height: 320px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 36, 26, 0.72), rgba(16, 36, 26, 0.2));
}

.hero > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media-wrap {
  flex: 1 1 240px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  background: var(--stone);
  border-radius: 14px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.small {
  padding: 8px 14px;
  font-size: 14px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tagline {
  color: var(--muted);
}

.band {
  background: var(--sand);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-grid label {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d2c8;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #ffffff;
  border: 1px dashed #d0c9bc;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
}

.footer {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner p {
  flex: 1 1 260px;
  color: var(--muted);
}

.subtle {
  color: var(--muted);
  font-size: 14px;
}

.full-width {
  width: 100%;
}

.bg-hero-index {
  background: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-about {
  background: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-services {
  background: url("https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-contact {
  background: url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-privacy {
  background: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-gdpr {
  background: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-cookies {
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-terms {
  background: url("https://images.unsplash.com/photo-1495567720989-cebdbdd97913?w=1400&q=80") center/cover no-repeat;
}

.bg-hero-thanks {
  background: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80") center/cover no-repeat;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e4e0da;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
