:root {
  color-scheme: light;
  --text: #1d1b1b;
  --muted: #5a5451;
  --accent: #1f6f5c;
  --accent-dark: #154c3f;
  --paper: #f7f3ee;
  --sand: #efe6db;
  --stone: #ded6cc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-header {
  padding: 32px 6vw 12px;
  gap: 24px;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw;
}

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

.section-bg {
  background: var(--sand);
}

.section-bg-dark {
  background: var(--stone);
}

.col {
  flex: 1;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.light {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button.dark {
  background: var(--accent-dark);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
}

.card h4 {
  margin: 0 0 6px;
}

.meta {
  font-size: 0.92rem;
  color: var(--muted);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
}

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

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

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.footer {
  padding: 48px 6vw 60px;
  background: #181513;
  color: #f8f3ed;
}

.footer a {
  color: #f8f3ed;
}

.footer .split {
  padding: 0;
  gap: 30px;
}

.small {
  font-size: 0.88rem;
  color: #d7d0c7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1e1b19;
  color: #f4efe8;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

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

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.split-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

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

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

  .stat-row {
    flex-direction: row;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 360px;
  }
}
