/* Base */
:root {
  color-scheme: light;
  --ink: #1c1f1b;
  --muted: #4f5a4f;
  --accent: #2f7d5a;
  --accent-dark: #1f5a40;
  --sand: #f3f0ea;
  --mist: #e6eee7;
  --sun: #f2c15f;
  --line: #d7ded6;
  --shadow: 0 18px 40px rgba(18, 32, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  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;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

/* Navigation */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.nav__links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav__links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--accent);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
}

/* Split sections */
.split-section {
  padding: 72px 0;
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.split__media,
.split__content {
  flex: 1 1 360px;
}

.split--reverse {
  flex-direction: row-reverse;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 12px 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.9rem, 2.2vw, 2.6rem);
}

p {
  margin: 12px 0;
  color: var(--muted);
}

.accent {
  color: var(--accent-dark);
}

.section-bg-sand {
  background: var(--sand);
}

.section-bg-mist {
  background: var(--mist);
}

.section-bg-sun {
  background: #fff7e3;
}

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
}

.btn--sun {
  background: var(--sun);
  border-color: var(--sun);
  color: #4b3410;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* Cards */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.card__title {
  font-weight: 600;
  margin-bottom: 6px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Stats */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 160px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 20px;
  color: var(--accent-dark);
}

/* Forms */
.form-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 180px;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

/* Footer */
.footer {
  padding: 32px 0 52px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
}

.cookie-banner__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Utilities */
.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.list {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
