/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: #1f1f1f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 8px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: #7a4a1f;
  background: #f6e7db;
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 48px 0;
  border-top: 1px solid #e5ddd6;
}

.split.tone-sand {
  background: #f2e8dd;
  border-radius: 18px;
  padding: 48px 24px;
  margin: 0 -24px;
  border-top: none;
}

.split.tone-ash {
  background: #efe9e3;
  border-radius: 18px;
  padding: 48px 24px;
  margin: 0 -24px;
  border-top: none;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 260px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #7a4a1f;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #ffffff;
  color: #2b2b2b;
  border: 1px solid #2b2b2b;
}

.btn:focus,
.btn:hover {
  background: #4b4b4b;
}

.btn.secondary:focus,
.btn.secondary:hover {
  background: #efefef;
}

.image-frame {
  background-color: #e8ded5;
  padding: 8px;
  border-radius: 14px;
  height: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.inline-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(23, 21, 18, 0.08);
}

.inline-card img {
  width: 140px;
  height: 120px;
  border-radius: 10px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  background: #fff8f1;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #f1e1d3;
}

.price-item span {
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(23, 21, 18, 0.08);
}

.form-wrap label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-wrap input,
.form-wrap select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #d9cfc4;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.note {
  font-size: 0.9rem;
  color: #4e4035;
}

.footer {
  border-top: 1px solid #e5ddd6;
  padding: 32px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f1f1f;
  color: #fff;
  padding: 14px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: #6b5a4d;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .inline-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .inline-card img {
    width: 100%;
    height: 180px;
  }
}
