* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background-color: #fff5ef;
  border-bottom: 1px solid #f0ded3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4f49;
  background: #f9e5d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 60px 6vw 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel-image {
  background-color: #eadcd2;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 18px;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 14px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #efe3db;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #8a4f2a;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.service-item .badge {
  background: #1c1c1c;
  color: #fff;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #efe3db;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7c7bd;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #fff5ef;
  border-top: 1px solid #f0ded3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  color: #5a4f49;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #efe3db;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  margin: 0 auto;
  width: fit-content;
  background: #1c1c1c;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.section-image {
  background-color: #e7d7cc;
  border-radius: 18px;
  overflow: hidden;
}

.mini-note {
  font-size: 0.95rem;
  color: #5a4f49;
}
