*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b2520;
  background-color: #f6f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  background: #f6f4ef;
  padding: 18px 0 24px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #2b3a2e;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  position: relative;
  color: #ffffff;
  background-color: #1f2f2a;
  background-image: url("https://images.unsplash.com/photo-1680355065203-43ad84bb6e69?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 96px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 25, 22, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #f3e36a;
  color: #1b2520;
}

.btn-secondary {
  border-color: #f3e36a;
  color: #f3e36a;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.offset-section {
  padding: 72px 0;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 24px 44px rgba(22, 37, 30, 0.08);
  transform: translateY(-18px);
}

.offset-card.alt {
  transform: translateY(18px);
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #dbe7dd;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 14px;
}

.service-preview {
  padding: 64px 0 80px;
  background: #eef2ed;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(22, 37, 30, 0.08);
}

.media-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #dbe7dd;
}

.media-frame img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-section {
  padding: 78px 0;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.lead-form {
  flex: 1 1 360px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(21, 34, 26, 0.1);
}

.lead-form label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cdd6ce;
  margin-top: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lead-form button {
  margin-top: 18px;
  width: 100%;
}

.side-note {
  flex: 1 1 240px;
  background: #1b2520;
  color: #ffffff;
  border-radius: 24px;
  padding: 26px;
  transform: translateY(24px);
}

.background-story {
  padding: 80px 0;
  color: #ffffff;
  background-color: #1d2e2a;
  background-image: url("https://images.pexels.com/photos/18316988/pexels-photo-18316988.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.background-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 20, 0.65);
}

.background-story .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.footer {
  margin-top: auto;
  background: #121c18;
  color: #e0e6e0;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #c8d1c9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f3e36a;
  color: #1b2520;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.page-hero {
  padding: 60px 0 40px;
  background: #eef2ed;
}

.page-hero .hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.page-hero .hero-copy {
  flex: 1 1 320px;
}

.page-hero .hero-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #dbe7dd;
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.content-block {
  padding: 50px 0 70px;
}

.legal {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(21, 34, 26, 0.08);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #1b2520;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 12;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.cookie-actions button {
  flex: 1 1 140px;
}

.thanks {
  padding: 80px 0;
  background: #eef2ed;
}

@media (max-width: 768px) {
  .offset-card,
  .side-note {
    transform: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
