* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #d9d2c8;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background-color: #f2ede6;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5e3f2b;
  padding: 6px 12px;
  border: 1px solid #b79c86;
  border-radius: 999px;
  background-color: #f9f0e6;
  text-align: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  padding: 6px 10px;
  border-radius: 12px;
}

nav a:hover {
  background-color: #e7ded3;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 6% 80px;
}

.hero {
  min-height: 420px;
  padding: 48px;
  border-radius: 28px;
  background-color: #2c2a2a;
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfdfb;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 17, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #c08958;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #a87447;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #f8f2ea;
}

.btn-outline:hover {
  background-color: rgba(248, 242, 234, 0.2);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 280px;
}

.image-frame {
  flex: 1 1 260px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #d9d2c8;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.offset {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.offset .card {
  flex: 1 1 280px;
  padding: 24px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offset .card.highlight {
  margin-top: 32px;
  border: 1px solid #eadfd1;
}

.stats-banner {
  padding: 28px;
  border-radius: 20px;
  background-color: #efe7dc;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  flex: 1 1 150px;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.price-card {
  flex: 1 1 240px;
  padding: 22px;
  background-color: #fff;
  border-radius: 18px;
  border: 1px solid #e5ddd2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-box {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d9d2c8;
}

.photo-box img {
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #7a4d2b;
}

.insight-band {
  padding: 36px;
  border-radius: 26px;
  background-color: #2f2a26;
  color: #f3eee6;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.insight-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 20, 0.65);
}

.insight-band .content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #eadfd1;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-card {
  flex: 1 1 320px;
  padding: 26px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #eadfd1;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2c6b8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-aside {
  flex: 1 1 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9d2c8;
}

.form-aside img {
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #1f1b19;
  color: #f4efe9;
  padding: 36px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer small {
  color: #d6cabe;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1f1b19;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background-color: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #eadfd1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.cookie-actions .btn-outline {
  color: #1f1b19;
  border-color: #1f1b19;
  background-color: transparent;
}

.cookie-actions .btn-outline:hover {
  background-color: #efe7dc;
}

.page-header {
  padding: 32px 6%;
  background-color: #efe7dc;
}

.page-header h1 {
  margin: 0;
}

.content-block {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 32px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
