* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 10px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: #5f5045;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 6vw 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-bottom-color: #9a6b3f;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 6vw 60px;
  align-items: stretch;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  align-self: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #3a2f28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: #1f1f1f;
  color: #f6f3ef;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.hero-image {
  flex: 1 1 380px;
  min-height: 360px;
  position: relative;
  background-color: #dcd2c6;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.badge {
  position: absolute;
  bottom: -18px;
  right: 10%;
  background: #fdf7ef;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: #fff9f2;
}

.section.dark {
  background: #1f1f1f;
  color: #f6f3ef;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 320px;
}

.offset-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.offset-text p {
  margin-bottom: 18px;
}

.offset-image {
  flex: 1 1 320px;
  min-height: 300px;
  background-color: #d7c7b7;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(-24px);
}

.offset-image img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9a6b3f;
  margin-top: 8px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #9a6b3f;
  padding-left: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfd4;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.form-box {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-box select,
.form-box input,
.form-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc4;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.form-image {
  flex: 1 1 320px;
  min-height: 340px;
  background-color: #d9c8b8;
  border-radius: 18px;
  overflow: hidden;
}

.form-image img {
  width: 100%;
  height: 100%;
}

.footer {
  padding: 50px 6vw 70px;
  background: #161616;
  color: #f6f3ef;
}

.footer a {
  color: #f6f3ef;
  border-bottom: 1px solid transparent;
}

.footer a:hover,
.footer a:focus {
  border-bottom-color: #f6f3ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8d0c8;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #9a6b3f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  z-index: 12;
  display: none;
}

.cookie-banner p {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.7);
}

.bg-texture > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .top-bar,
  .nav,
  .hero,
  .section,
  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sticky-cta {
    left: 20px;
    right: auto;
  }

  .badge {
    position: static;
    margin-top: 18px;
  }

  .offset-image {
    transform: none;
  }
}
