* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background-color: #f7f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  background-color: #f7f4f1;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 14px;
  color: #504b45;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 16px;
  border: 1px solid #c8c1b9;
  background-color: #fbfaf8;
}

.hero {
  padding: 48px 0 32px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 420px;
}

.split-media {
  flex: 1 1 420px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b5f54;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 3vw, 44px);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1f1f1f;
  color: #fff;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  font-size: 15px;
}

.btn.secondary {
  background-color: transparent;
  color: #1f1f1f;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #5e564f;
}

.image-card {
  background-color: #e4ddd6;
  padding: 16px;
  border-radius: 28px;
}

.image-card img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
}

.section {
  padding: 56px 0;
}

.section.tone {
  background-color: #efe9e2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  padding: 6px 12px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #d5ccc2;
  font-size: 13px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e0d9d1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #2c2621;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 220px;
  padding: 18px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #e0d9d1;
}

.quote {
  font-style: italic;
  color: #433c35;
}

.form-wrap {
  background-color: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid #e3ddd6;
}

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #4a423b;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfc6bd;
  margin-bottom: 16px;
  font-size: 15px;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-details {
  opacity: 0.4;
  pointer-events: none;
}

.form-details.enabled {
  opacity: 1;
  pointer-events: auto;
}

.note {
  font-size: 13px;
  color: #6a5f55;
}

.footer {
  padding: 36px 0 56px;
  background-color: #1f1f1f;
  color: #f6f1ec;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer p {
  color: #d2c7bc;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  background-color: #9f5a2d;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid #9f5a2d;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  border: 1px solid #d8d0c7;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background-color: #1f1f1f;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #1f1f1f;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split-list div {
  flex: 1 1 280px;
}

@media (max-width: 720px) {
  .image-card img {
    height: 320px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
