* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e2ddd7;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f2e9e2;
  padding: 6px 12px;
  border-radius: 999px;
  color: #4a3e35;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #b4835b;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6%;
  background: #efebe6;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero p {
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background: #1b1b1b;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: #1b1b1b;
}

.btn:hover {
  background: #2b2b2b;
}

.btn.outline:hover {
  background: #1b1b1b;
  color: #ffffff;
}

.hero-visual {
  background: #d8cfc7;
  border-radius: 18px;
  overflow: hidden;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 46px 6%;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1f1f1f;
  color: #f9f7f4;
}

.section-title {
  font-size: 2rem;
  max-width: 640px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  background: #f7f2ec;
  padding: 22px;
  border-radius: 18px;
}

.split-card.dark {
  background: #2b2b2b;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #ece6e0;
}

.image-frame {
  background: #d7cfc8;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ebe5df;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #f1ede7;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #f6f1ec;
  padding: 18px;
  border-radius: 16px;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #e7e0d9;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc7bf;
  font-size: 1rem;
  background: #fff;
}

.form-shell textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  border: none;
  background: #fff;
  color: #1b1b1b;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta button:hover {
  background: #f1f1f1;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6%;
  background: #121212;
  color: #f4f1ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.footer small {
  color: #cfc7bf;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e1dad3;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: #1b1b1b;
  color: #fff;
}

.cookie-actions button.reject {
  background: #fff;
}

.cookie-actions button:hover {
  background: #f3efe9;
}

.content-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 46px 6%;
  background: #ffffff;
  min-height: 70vh;
}

.content-page h1 {
  font-size: 2.4rem;
}

.content-page h2 {
  font-size: 1.4rem;
  margin-top: 10px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f6f1ec;
  padding: 20px;
  border-radius: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eee6df;
}

.service-card img {
  border-radius: 12px;
}

.service-card button {
  align-self: flex-start;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-visual {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-card {
    flex: 1;
  }

  .trust-row {
    flex-direction: row;
  }

  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 220px;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }
}
