* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f7f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.disclosure {
  font-size: 0.85rem;
  background: #f2d7aa;
  color: #4a2c0c;
  padding: 6px 12px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-link {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  border-color: #2b5b4d;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 340px;
  min-width: 280px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #44635a;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  background: #2b5b4d;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #e8efe9;
  color: #2b5b4d;
}

.button.inline {
  background: transparent;
  color: #2b5b4d;
  padding: 0;
}

.button:hover {
  filter: brightness(0.95);
}

.image-wrap {
  background-color: #dbe4de;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(31, 42, 46, 0.08);
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b5b4d;
}

.tag {
  display: inline-flex;
  background: #e1ece7;
  color: #2b5b4d;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  align-self: flex-start;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(31, 42, 46, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccd6d2;
  font-size: 1rem;
}

.inline-link {
  color: #2b5b4d;
  font-weight: 600;
}

.quote {
  background: #e9efe7;
  border-radius: 16px;
  padding: 18px;
}

.footer {
  background: #1f2a2e;
  color: #ffffff;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2b5b4d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(31, 42, 46, 0.25);
  z-index: 20;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(31, 42, 46, 0.18);
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.section-muted {
  background: #eef2ee;
}

.section-dark {
  background: #d7e2db;
}

.small-text {
  font-size: 0.9rem;
}
