* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4ef;
  --ink: #1f2a1f;
  --muted: #5b6a5b;
  --accent: #2f6b3f;
  --accent-2: #9c6b2f;
  --panel: #ffffff;
  --soft: #e6efe6;
  --shadow: 0 18px 40px rgba(18, 30, 18, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #f0e7db;
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

nav a {
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero {
  padding: 36px 6vw 60px;
}

.split {
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.tagline {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
}

h1 {
  font-size: 2.7rem;
  line-height: 1.15;
}

h2 {
  font-size: 2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-visual,
.media-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #dae6d9;
  box-shadow: var(--shadow);
}

.hero-visual img {
  height: 420px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(47, 107, 63, 0.25);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: #edf2ec;
}

.section-title {
  max-width: 620px;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(27, 39, 27, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #dfe8de;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.panel {
  background: var(--panel);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.full-width {
  flex: 1 1 100%;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5dfd4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2a1f;
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list div {
  background: #f2f0ea;
  padding: 12px 16px;
  border-radius: 12px;
}

.image-band {
  background-image: url("https://images.unsplash.com/photo-1483794344563-d27a8d18014e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a3a2b;
  padding: 90px 6vw;
  color: #fff;
}

.image-band .panel {
  background: rgba(18, 30, 18, 0.65);
  color: #fff;
}

.about-band {
  background-image: url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #314033;
  padding: 80px 6vw;
  color: #fff;
}

.services-band {
  background-image: url("https://images.pexels.com/photos/14388151/pexels-photo-14388151.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #273429;
  padding: 80px 6vw;
  color: #fff;
}

footer {
  padding: 40px 6vw 80px;
  background: #1e2a1e;
  color: #d9e2d8;
}

footer a {
  color: #d9e2d8;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.hidden {
  display: none;
}

@media (max-width: 860px) {
  .hero-visual img {
    height: 320px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
