* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #faf8f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  background-color: #f2ede6;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid #b9aa9b;
  background-color: #fff6ea;
}

.hero {
  padding: 32px 6vw 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 360px;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #e1d7cb;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=800&q=80");
}

.bg-form {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=800&q=80");
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  background-color: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background-color: #e5ddd2;
  color: #1f1f1f;
}

.inline-link {
  color: #4a4a4a;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background-color: #f2ede6;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.08);
}

.service-card .media {
  flex: 0 0 160px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #e6e0d8;
}

.media-block {
  flex: 1 1 360px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e6e0d8;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price-tag {
  font-weight: 700;
  margin-top: 6px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background-color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  border: 1px solid #d7cbbd;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background-color: #fff;
  padding: 16px;
  border-left: 4px solid #c49a6c;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c6b8a7;
  font-size: 14px;
  background-color: #fff;
}

.service-selectors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #d7cbbd;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #1f1f1f;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background-color: #f2ede6;
  color: #1f1f1f;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

footer {
  padding: 32px 6vw 48px;
  background-color: #f2ede6;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #4a4a4a;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 6vw;
  background-color: #1f1f1f;
  color: #fff;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 18px;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-actions .accept {
  background-color: #f2ede6;
}

.cookie-actions .reject {
  background-color: #cbb7a3;
}

.legal-page h1 {
  font-size: 32px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
}

.contact-block {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-block .label {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
