* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f7f2;
  --ink: #1a1f1b;
  --muted: #5a645d;
  --accent: #2f6b4f;
  --accent-dark: #1f4a38;
  --sand: #e7e1d3;
  --mist: #dfe7e2;
  --stone: #cfd5cc;
  --highlight: #f0efe8;
  --shadow: 0 20px 45px rgba(26, 31, 27, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--highlight);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--stone);
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--mist);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  text-align: center;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pill-button:hover,
.pill-button:focus {
  background: var(--accent-dark);
}

.content {
  flex: 1;
  padding: 48px 64px 140px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.1;
}

.hero-image {
  flex: 1;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: var(--shadow);
  transform: translateY(18px);
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  transform: translateY(-16px);
}

.image-frame {
  flex: 1;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--mist);
}

.section-note {
  font-size: 14px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  height: 160px;
}

.service-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 600;
  color: var(--accent);
}

.section-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.panel {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.panel-text {
  flex: 1.2;
}

.panel-image {
  flex: 1;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--stone);
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  background: #fff;
  font-size: 14px;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 4;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-note {
  background: var(--mist);
  padding: 16px;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  background: #fff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.bg-forest {
  background: linear-gradient(120deg, rgba(31, 74, 56, 0.85), rgba(231, 225, 211, 0.6)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 40px;
  border-radius: 26px;
}

.bg-marsh {
  background: linear-gradient(120deg, rgba(26, 31, 27, 0.55), rgba(223, 231, 226, 0.7)),
    url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 36px;
  border-radius: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.list li {
  margin-left: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 24px 140px;
  }

  .hero,
  .split-section,
  .split-section.reverse,
  .panel {
    flex-direction: column;
  }

  .hero-image,
  .image-frame,
  .panel-image {
    width: 100%;
  }
}
