* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1a4a45;
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid #1a4a45;
  outline-offset: 2px;
}

header {
  padding: 28px 7vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  background: #efe8df;
  color: #483a2f;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 30px 7vw 60px;
  background-color: #dfe8e4;
}

.section {
  padding: 60px 7vw;
}

.split {
  display: flex;
  gap: 42px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #e1e6e0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tagline {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475954;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.lede {
  font-size: 1.1rem;
  color: #2f2f2f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a4a45;
  color: #1a4a45;
  font-weight: 600;
  background: #f7f5f2;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: #1a4a45;
  color: #fefbf7;
}

.btn:hover {
  transform: translateY(-2px);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1a4a45;
}

.highlight {
  background: #fff2e3;
  padding: 18px 22px;
  border-radius: 16px;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-media {
  background-color: #e9e4da;
  height: 180px;
  overflow: hidden;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a4a45;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefbf7;
  position: relative;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 31, 0.6);
}

.bg-insight .overlay {
  position: relative;
  z-index: 1;
}

.bg-field {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffdf9;
  position: relative;
}

.bg-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 33, 24, 0.55);
}

.bg-field .overlay {
  position: relative;
  z-index: 1;
}

.quote {
  border-left: 3px solid #1a4a45;
  padding-left: 16px;
  font-style: italic;
  margin: 16px 0;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bb;
  font-size: 1rem;
  background: #fffaf4;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1a4a45;
  color: #fffdf9;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.legal {
  max-width: 860px;
}

footer {
  padding: 40px 7vw 70px;
  background: #e9e4da;
}

.footer-cols {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 0.92rem;
  color: #3d3d3d;
}

.two-col {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 280px;
}

.section-note {
  font-size: 0.9rem;
  color: #55524d;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 10px;
  }

  h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
