* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f7f2;
  --ink: #1f2a1f;
  --muted: #556153;
  --accent: #2f6b3b;
  --accent-2: #8aa36a;
  --light: #ffffff;
  --sand: #ece6d7;
  --leaf: #d7e2cf;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  background: var(--light);
  border-bottom: 1px solid #e3e7df;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--leaf);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #cfe0c8;
  color: var(--light);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 18, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: var(--light);
  color: var(--accent);
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.sand {
  background: var(--sand);
}

.section.leaf {
  background: var(--leaf);
}

.asym-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 260px;
}

.offset-card {
  background: var(--light);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(39, 52, 34, 0.08);
  margin-top: 24px;
}

.media-frame {
  background: #dfe7d3;
  border-radius: 18px;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 320px;
}

.bg-olive {
  background: #cfe0c8;
}

.bg-sage {
  background: #d9e0cf;
}

.bg-moss {
  background: #d5ddc9;
}

.bg-pale {
  background: #dfe7d3;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.form-panel {
  background: var(--light);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(39, 52, 34, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd6c6;
  font-size: 15px;
  background: #fcfdf9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.footer {
  background: #1c271c;
  color: #d7e2cf;
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer a {
  color: #d7e2cf;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-card {
  flex: 1;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--light);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(19, 30, 18, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: #dfe7d3;
  padding: 50px 6%;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.page-hero-media {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}

.page-hero-media img {
  width: 100%;
  height: 260px;
  border-radius: 16px;
}

.highlight {
  background: var(--leaf);
  padding: 18px;
  border-radius: 14px;
}
