:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #141414;
  --muted: #5c5c5c;
  --accent: #2f5f4f;
  --accent-2: #8b6f3d;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

header {
  padding: 28px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a3a31, #607a68);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  z-index: 30;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 72px 6vw;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.split.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}

.split > div {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-2);
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  gap: 8px;
}

.btn.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  background: #eef1ee;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
}

.layered {
  background: linear-gradient(120deg, rgba(47, 95, 79, 0.08), rgba(139, 111, 61, 0.08));
  border-radius: var(--radius);
  padding: 26px;
}

.testimonial {
  background: #f0efe9;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3d3d3;
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 50px 6vw 60px;
  background: #141414;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 60px 6vw 24px;
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice {
  background: #f1f1f1;
  padding: 18px;
  border-radius: 14px;
  font-size: 0.95rem;
}


.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}
