* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f7f3ee;
  line-height: 1.6;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw 10px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  background: #f0e2d1;
  padding: 6px 10px;
  border-radius: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.hero-visual img {
  border-radius: 24px;
  background-color: #d9c8b2;
}

.hero-card {
  background: #fffaf3;
  padding: 24px;
  border-radius: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-top: -60px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1c1c1c;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}

.section {
  padding: 50px 6vw;
}

.section-alt {
  background: #fffaf3;
}

.bg-shelf {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffaf3;
}

.bg-route {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fffaf3;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asym-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d4c3b0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.service-card img {
  border-radius: 12px;
  background-color: #d8c6b4;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: #f0e2d1;
  padding: 16px;
  border-radius: 14px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-select button {
  text-align: left;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9b8a3;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 90px;
}

.note {
  font-size: 0.9rem;
  color: #5e5044;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 60px;
  background: #1c1c1c;
  color: #f7f3ee;
}

.footer a {
  color: #f7f3ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: #6a5c4f;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1.1;
  }

  .hero-text {
    flex: 0.9;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .split {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .form-shell {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-select,
  .form-fields {
    flex: 1;
  }
}
