* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1c1a;
  background: #f6f3ef;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7vw;
  background: #efe7dd;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-note {
  font-size: 0.85rem;
  color: #5a544b;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: #1d1c1a;
  text-decoration: none;
}

.main {
  flex: 1;
}

.section {
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.section--light {
  background: #fdfbf8;
}

.section--dark {
  background: #2f2a24;
  color: #f6f3ef;
}

.section--offset {
  background: #f8f1e8;
}

.section-title {
  font-size: 2.2rem;
  margin: 0;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
}

.image-frame {
  background: #d7c5b2;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-card {
  background: #fff9f2;
  padding: 24px;
  border-radius: 10px;
  position: relative;
  top: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1d1c1a;
  color: #fdfbf8;
  text-decoration: none;
}

.cta-secondary {
  background: #d7c5b2;
  color: #1d1c1a;
}

.inline-link {
  color: inherit;
  text-decoration: underline;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1 1 300px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #fffdf9;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
}

.form-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 10px 12px;
  border: 1px solid #cfc6bb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-block button {
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: #1d1c1a;
  color: #fdfbf8;
  font-size: 1rem;
  cursor: pointer;
}

.footer {
  padding: 30px 7vw 50px;
  background: #efe7dd;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.legal-disclaimer {
  font-size: 0.85rem;
  color: #5a544b;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1d1c1a;
  color: #fdfbf8;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2f2a24;
  color: #f6f3ef;
  padding: 18px 6vw;
  display: none;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  background: #f6f3ef;
  color: #2f2a24;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.two-column > div {
  flex: 1 1 280px;
}

.highlight-box {
  background: #fef7ee;
  padding: 20px;
  border-radius: 14px;
}

.note {
  background: #ffffff;
  padding: 16px;
  border-radius: 10px;
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
