* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1a14;
  background: #faf7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #eadfce;
}

a {
  color: #1f1a14;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 12px 6vw;
  background: #f2ece3;
}

.topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  padding: 6px 10px;
  background: #e6dbcd;
  border-radius: 16px;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 0 0 0;
}

.nav a {
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 30px;
  padding: 40px 6vw;
  background: #fefaf4;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-image {
  flex: 1 1 320px;
  background: #eadfce;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: #f2ece3;
}

.section.deep {
  background: #efe2d0;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 14px 0;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.inline-image {
  background: #e8dcc9;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  background-color: #eadfce;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: #1f1a14;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #d9c4a6;
  color: #1f1a14;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1a14;
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d3c4b1;
  font-size: 1rem;
}

.trust-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  background: #fff;
  border-left: 4px solid #d3b98e;
  padding: 14px 16px;
  border-radius: 12px;
}

.footer {
  padding: 32px 6vw;
  background: #1f1a14;
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-bg {
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  background-color: #cbb79a;
}

.note {
  font-size: 0.95rem;
  color: #3c2f21;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.inline-link {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
  }
  .split.reverse {
    flex-direction: column;
  }
}
