* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --green-900: #1f3a2b;
  --green-700: #2e5739;
  --green-100: #eef5ef;
  --beige-100: #f6f1e8;
  --beige-200: #efe5d5;
  --accent: #2f6b3f;
  --text: #1b1f1a;
  --muted: #5b665d;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(19, 36, 26, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background-color: #fbfbf9;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  background: #fff;
  border-bottom: 1px solid #e5e5e0;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--green-900);
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--beige-200);
  color: var(--green-700);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  font-weight: 600;
}

main {
  padding-bottom: 80px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split .media {
  flex: 1;
  display: flex;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--green-900);
}

h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  filter: brightness(0.95);
}

.image-frame {
  width: 100%;
  background: var(--beige-100);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--green-700);
}

.section-bg-1 {
  background: url("https://images.unsplash.com/photo-1531873252757-8c22fa9e7a98?w=1400&q=80") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.section-bg-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 36, 26, 0.72);
}

.section-bg-1 .content,
.section-bg-1 .media {
  position: relative;
  z-index: 1;
}

.section-bg-1 h2,
.section-bg-1 p {
  color: #fff;
}

.note {
  background: var(--beige-100);
  padding: 16px 18px;
  border-radius: 14px;
  color: var(--green-700);
  font-weight: 600;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  color: var(--green-900);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd7cd;
  font-size: 1rem;
}

.form-panel button {
  align-self: flex-start;
}

.footer {
  background: #fff;
  border-top: 1px solid #e5e5e0;
  padding: 32px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta span {
  font-weight: 600;
  color: var(--green-900);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }
}
