* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f6f2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-intro h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
}

.hero-intro p {
  font-size: 18px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f2a24;
  color: #f7f6f2;
  font-weight: 600;
  font-size: 14px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f2a24;
  color: #1f2a24;
}

.btn-soft {
  background: #b8d7b1;
  color: #1f2a24;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-card {
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.tone-olive {
  background: #dde9d4;
}

.tone-sand {
  background: #efe6d8;
}

.tone-mist {
  background: #e6f0ee;
}

.tone-dark {
  background: #1f2a24;
  color: #f7f6f2;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 42, 36, 0.08);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #f7f6f2;
  border: 1px solid #d6d2c8;
}

.price-item strong {
  font-size: 18px;
}

.quote {
  font-size: 20px;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c3c8c2;
  font-size: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid #d6d2c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px;
  border-radius: 16px;
  background: #1f2a24;
  color: #f7f6f2;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f7f6f2;
  border: 1px solid #d6d2c8;
  font-size: 13px;
}

.notice {
  border-left: 4px solid #1f2a24;
  padding-left: 12px;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-section > div {
    flex: 1;
  }

  .hero-intro h1 {
    font-size: 48px;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }

  .columns {
    flex-direction: row;
  }
}
