@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;500;700&display=swap");

:root {
  --cream: #f5f1eb;
  --stone: #e7e1d9;
  --wood: #8b6f52;
  --charcoal: #2f2b28;
  --forest: #4e5b52;
  --sage: #b7c3b8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 16px;
  background-color: var(--cream);
}

.header-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 14px;
  background-color: var(--stone);
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-size: 15px;
}

.hero {
  background-color: var(--stone);
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 140px 0 120px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: var(--wood);
  color: var(--white);
  font-weight: 600;
  width: fit-content;
}

.btn-secondary {
  background-color: var(--forest);
}

.section {
  padding: 80px 0;
}

.section-muted {
  background-color: var(--stone);
}

.section-dark {
  background-color: var(--forest);
  color: var(--white);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-wrap {
  background-color: var(--sage);
  border-radius: 20px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card h3,
.card h4 {
  margin: 0;
}

.text-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  width: fit-content;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  background-color: var(--white);
  border-radius: 16px;
}

.pricing-item span {
  font-weight: 700;
  color: var(--wood);
  font-size: 18px;
}

.selection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.selection-card {
  flex: 1 1 240px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  background-color: var(--white);
  border-radius: 20px;
  padding: 28px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c6;
  font-family: inherit;
  font-size: 16px;
}

.notice {
  font-size: 14px;
  color: #5c564f;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: var(--white);
  font-weight: 600;
}

.footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 50px 0 40px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.footer p {
  margin: 8px 0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 18px;
  width: min(340px, 90%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: var(--forest);
  color: var(--white);
}

.cookie-reject {
  background-color: var(--stone);
}

.flex-1 {
  flex: 1;
}

.max-520 {
  max-width: 520px;
}

.mt-30 {
  margin-top: 30px;
}

.page-hero {
  padding: 90px 0 70px;
  background-color: var(--stone);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.page-image {
  margin-top: 28px;
}

.hero.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-position: center;
  background-size: cover;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
