/* Base */
:root {
  color-scheme: light;
  --ink: #1c241f;
  --muted: #4b5c52;
  --bg: #f5f7f2;
  --surface: #ffffff;
  --accent: #2f7d5d;
  --accent-dark: #245c45;
  --sun: #e2a45a;
  --sand: #efe4d3;
  --leaf: #9cc3a6;
  --shadow: 0 18px 40px rgba(17, 24, 19, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split__media {
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 16px;
}

.hero {
  padding: 40px 0 10px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section.soft {
  background: var(--surface);
}

.section.tint {
  background: var(--sand);
}

.section .kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.quote {
  font-style: italic;
  background: var(--leaf);
  padding: 18px;
  border-radius: 18px;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d9e5dc;
  font-weight: 600;
}

.pricing {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8d2;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 0;
  background: #101611;
  color: #e6efe8;
}

.footer .nav-links a {
  color: #e6efe8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: #2c1c0d;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.two-col > div {
  flex: 1;
}

.note {
  background: #edf4ef;
  padding: 14px 18px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .split,
  .two-col {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: auto;
  }
}
