*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  color: #6a5950;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #ff7a5c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #1f1f1f;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transform: translateX(6px);
}

.offset-tag {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  position: absolute;
  left: 0;
  bottom: -16px;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: #1f1f1f;
  color: #fff;
}

.section.light {
  background: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #ff7a5c;
  font-size: 18px;
}

.gallery-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-strip img {
  border-radius: 18px;
}

.process-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  border-left: 6px solid #ff7a5c;
}

.cta-panel {
  background: #ffefe9;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4ccc8;
  font-size: 14px;
  width: 100%;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  color: #6a5950;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.page-header {
  padding: 50px 6vw 20px;
}

.page-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
    padding-right: 20px;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .gallery-strip {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }
}
