* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f5f3ee;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  background: #1b1b1b;
  color: #f5f3ee;
  font-size: 12px;
  border-radius: 999px;
}

.split-section {
  display: flex;
  gap: 28px;
  padding: 60px 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-6fF-Ojxov6o?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2f1c;
  position: relative;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  padding: 90px 0 110px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0;
}

.hero-content p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 26px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #f5f3ee;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.light {
  background: transparent;
  color: #f5f3ee;
  border-color: #f5f3ee;
}

.btn.secondary {
  background: #f5f3ee;
  color: #1b1b1b;
  border-color: #f5f3ee;
}

.section-title {
  font-size: 26px;
  margin: 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 170px;
  background-color: #d9e3d3;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2f5d2f;
}

.inline-link {
  font-weight: 600;
  color: #2f5d2f;
}

.accent-section {
  background: #1f2f1c;
  color: #f5f3ee;
}

.accent-section .btn.secondary {
  background: #f5f3ee;
  color: #1f2f1c;
}

.story-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.form-section {
  background: #f0efe9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 16px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer {
  padding: 40px 0 60px;
  background: #111310;
  color: #f5f3ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #2f5d2f;
  color: #f5f3ee;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f3ee;
  border-top: 1px solid #c7c7c7;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: #e2e7dd;
  padding: 60px 0;
}

.page-hero img {
  border-radius: 20px;
  background-color: #c6d4c0;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9e3d3;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-yhc4pSbl01A?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2f1c;
  position: relative;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 35, 21, 0.75);
}

.background-panel .panel {
  position: relative;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
