* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --cream: #f7f3ef;
  --ink: #1f1b17;
  --rose: #d7b7c8;
  --sand: #e7dccf;
  --plum: #6e3b57;
  --mist: #f0f0f2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--plum);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 40px 24px 120px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: #555;
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel strong {
  color: var(--plum);
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 20px;
  background: var(--plum);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--plum);
  color: var(--plum);
}

.link-action {
  font-size: 14px;
  border-bottom: 1px solid currentColor;
}

.image-wrap {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-block {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--mist);
  padding: 24px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
}

.price-reveal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
}

.service-card h3 {
  font-size: 18px;
}

.service-card span {
  font-weight: 700;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.inline-cta {
  background: var(--sand);
  padding: 12px;
  border-radius: 12px;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.background-panel a {
  color: #fff;
}

footer {
  padding: 32px 24px 120px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--plum);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--plum);
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--ink);
  color: #fff;
}

.cookie-actions .secondary {
  background: #ddd;
  color: var(--ink);
}

.subpage-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--mist);
  padding: 28px;
  border-radius: 18px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-block {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  main {
    padding: 60px 80px 140px;
  }

  header {
    padding: 32px 80px 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .trust-strip {
    flex-direction: row;
  }
}
