* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d2a24;
  --muted: #4b5d55;
  --sand: #f5f1e8;
  --leaf: #3c6f5b;
  --river: #2e4f62;
  --sun: #d1a960;
  --stone: #e4e0d8;
  --shadow: rgba(15, 29, 22, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: lowercase;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 6vw 120px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 30, 26, 0.78), rgba(12, 30, 26, 0.15)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 560px;
  color: #f7f3ea;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-content p {
  color: rgba(247, 243, 234, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--sun);
  color: #2a1b0c;
  box-shadow: 0 12px 30px rgba(209, 169, 96, 0.35);
}

.btn.secondary {
  border-color: rgba(247, 243, 234, 0.6);
  color: #f7f3ea;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 72px 6vw;
}

.section.light {
  background: #fffdf8;
}

.section.tone {
  background: var(--stone);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 50px var(--shadow);
  padding: 28px;
  position: relative;
}

.offset-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 100px;
  height: 100px;
  background: rgba(209, 169, 96, 0.22);
  border-radius: 32px;
  z-index: -1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 15px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.inline-cta {
  color: var(--leaf);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.stat {
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  flex: 1 1 160px;
}

.testimonial {
  border-left: 3px solid var(--leaf);
  padding-left: 16px;
  margin-top: 18px;
  color: var(--muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px var(--shadow);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--river);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  background: var(--leaf);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 24px 50px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d1c5;
  font-size: 0.95rem;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer {
  padding: 48px 6vw;
  background: #1c2721;
  color: #f1efe9;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--leaf);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(46, 79, 98, 0.25);
  z-index: 50;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.hero-offset {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.inline-image {
  border-radius: 20px;
  height: 220px;
  object-fit: cover;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .hero {
    padding: 120px 10vw 140px;
  }

  .top-nav {
    padding: 28px 10vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-wrap {
    flex-direction: row;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .field {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
