* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4ef;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #f7f4ef;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #d8784c;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 70px;
  position: relative;
}

.hero .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0;
}

.hero .hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff8f1;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 24px 40px rgba(42, 26, 12, 0.1);
}

.hero .hero-media {
  max-width: 520px;
  align-self: flex-start;
  margin-left: 12vw;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 0.85rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
}

.cta-primary {
  background: #d8784c;
  color: #fff;
}

.cta-secondary {
  border-color: #1b1b1b;
}

.section {
  padding: 60px 6vw;
}

.section.dark {
  background: #1b1b1b;
  color: #f7f4ef;
}

.section.soft {
  background: #efe4d7;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-row .offset {
  align-self: flex-end;
  max-width: 520px;
}

.service-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(42, 26, 12, 0.08);
}

.service-card .price {
  font-weight: 700;
  color: #d8784c;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.note-box {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(27, 27, 27, 0.1);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.form-wrap label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 27, 27, 0.2);
  font-size: 1rem;
  background: #fffdf9;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-link {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1b1b1b;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #efe4d7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 80px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 20px 30px rgba(27, 27, 27, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layered-block {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 30px;
  background: #fff;
}

.layered-block::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: #d8784c;
  opacity: 0.2;
  border-radius: 50%;
}

.layered-block > * {
  position: relative;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-copy {
    flex: 1;
  }

  .hero .hero-media {
    flex: 1;
    margin-left: 0;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .service-strip {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 250px;
  }

  .split-stack {
    flex-direction: row;
    align-items: stretch;
  }

  .split-stack > * {
    flex: 1;
  }

  .image-strip {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > * {
    flex: 1;
  }
}
