* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: #ffffff;
  border-bottom: 1px solid #e6ddd5;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: #5a4f45;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a,
.nav-links button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: #1c1c1c;
}

.nav-links a:hover,
.nav-links button:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  background: #f0e7df;
}

.hero-visual {
  flex: 1 1 50%;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-image {
  background-color: #d7c7bb;
  background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1400&q=80");
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

.hero-content {
  flex: 1 1 50%;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-content h1 {
  font-size: 38px;
  margin: 0;
}

.hero-content p {
  margin: 0;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #3d2f27;
  background: #3d2f27;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #3d2f27;
}

.section {
  display: flex;
  flex-wrap: wrap;
  padding: 56px 48px;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.light {
  background: #ffffff;
}

.section.deep {
  background: #efe6de;
}

.section-content {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-content h2,
.section-content h3 {
  margin: 0;
}

.section-visual {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5d7cc;
  border-radius: 18px;
  padding: 12px;
}

.visual-muted {
  background-color: #e0d0c5;
}

.visual-dark {
  background-color: #d3c1b4;
}

.section-visual img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #3d2f27;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccbfb4;
  font-size: 14px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inline-cta {
  color: #3d2f27;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background: #3d2f27;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(61, 47, 39, 0.3);
}

.footer {
  margin-top: auto;
  background: #2b201b;
  color: #f6f0ea;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer small {
  color: #d6c8bb;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.background-panel {
  background-color: #dcd0c5;
  background-image: url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 24px;
  color: #1c1c1c;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 52px 48px 12px;
}

.page-header h1 {
  margin: 0;
  font-size: 34px;
}

.simple-section {
  padding: 24px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.contact-block {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  background: #efe6de;
  border-radius: 12px;
  padding: 16px;
}

@media (max-width: 900px) {
  .hero-content,
  .section-content {
    padding: 32px 24px;
  }

  .section {
    padding: 40px 24px;
  }

  .top-bar,
  .footer {
    padding: 20px 24px;
  }

  .page-header,
  .simple-section {
    padding: 32px 24px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
