* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.top-bar {
  padding: 18px 0 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ad-label {
  font-size: 0.9rem;
  color: #6a5a48;
  padding: 6px 12px;
  border: 1px solid #d8cdbf;
  border-radius: 999px;
  background: #fbf8f4;
}

.hero {
  padding: 64px 0;
  background: #efe6da;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 48%;
  background-color: #c7b6a0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #8a6d4d;
}

.headline {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: #3a3229;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fdfbf8;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: #1e1b18;
  color: #f5efe8;
}

.section-light {
  background: #ffffff;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.68);
}

.bg-insight .container {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-visual {
  flex: 1 1 48%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d4c6b6;
  min-height: 280px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.story-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 16px;
  background: #f2ebe2;
  border: 1px solid #e1d6c8;
}

.story-card strong {
  display: block;
  margin-bottom: 8px;
}

.testimonial {
  padding: 20px;
  border-radius: 16px;
  background: #2b2621;
  color: #f5efe8;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  border: 1px solid #e6ded4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-shell {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d7c9b8;
}

.image-shell img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #6a4f35;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e6ded4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cec0;
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 40px 0;
  background: #141210;
  color: #cfc5bb;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer a {
  color: #f0e6da;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  background: #b86b2d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2d7c8;
  padding: 16px;
  max-width: 320px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1a1a1a;
}

.simple-hero {
  padding: 60px 0 30px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-visual {
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d0c2b2;
}

.page-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-block {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e4d9cc;
}

@media (max-width: 900px) {
  .hero-inner,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
