* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #fffaf5;
  border-bottom: 1px solid #e6e0d9;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #6a5c4d;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 12px;
  background: #efe5da;
  border-radius: 999px;
  font-size: 12px;
  color: #5a4a3a;
}

.main {
  flex: 1;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 60px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f1e8df;
  padding: 24px;
  border-radius: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #eadfd4;
  font-size: 13px;
  width: fit-content;
}

.hero-title {
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f1b16;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background: #e9dfd3;
  color: #1f1b16;
}

.inline-link {
  text-decoration: underline;
  color: #5b3f2e;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  align-items: center;
  border: 1px solid #efe6dd;
}

.card .card-img {
  width: 140px;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9cfc3;
  flex-shrink: 0;
}

.card .card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  background: #fdfbf8;
  border-radius: 18px;
  padding: 16px 20px;
  border: 1px solid #e8ded3;
  gap: 12px;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #efe3d7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d1c6;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 0 6vw;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.sticky-cta a {
  pointer-events: auto;
}

.site-footer {
  background: #1e1913;
  color: #f4efe8;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.footer-col a {
  color: #f4efe8;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: none;
  background: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.banner-visible {
  display: flex;
}

.hero-image,
.inline-image,
.section-image {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background-color: #dcd2c6;
}

.hero-image img,
.inline-image img,
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.columns .column {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #efe4d8;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 6vw;
}

.legal h1 {
  font-size: 32px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #efe3d7;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 24px 6vw 0;
  }
}
