* {
  box-sizing: border-box;
}

html {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f7f5f2;
}

body {
  margin: 0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e3ded8;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav .ad-label {
  font-size: 0.9rem;
  color: #7a5c4f;
  border: 1px solid #d6c7bc;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f8f2ee;
}

.nav .menu {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 48px 0;
}

.hero .hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero .hero-text h1 {
  font-size: 2.7rem;
  margin: 0;
}

.hero .hero-card {
  flex: 1 1 360px;
  background: #1b1a1a;
  color: #ffffff;
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero .hero-image {
  background: #2f2b28;
  border-radius: 22px;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1d1d1f;
}

.button:active {
  transform: scale(0.98);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .visual {
  flex: 1 1 320px;
}

.visual-card {
  background: #e7e0da;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-card img {
  border-radius: 16px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  border: 1px solid #e3ded8;
}

.service-row span {
  font-weight: 600;
}

.service-row .price {
  color: #7a5c4f;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e3ded8;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 6px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 1rem;
}

.inline-cta {
  color: #7a5c4f;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  margin: 0 auto;
  max-width: 980px;
  background: #1d1d1f;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta a {
  color: #1d1d1f;
}

.sticky-cta .button {
  background: #ffffff;
  color: #1d1d1f;
  border-color: #ffffff;
}

.footer {
  padding: 40px 24px;
  background: #1b1a1a;
  color: #ffffff;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #d6cbc4;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d6cbc4;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: #6d6964;
}

.image-frame {
  background: #d8cfc7;
  border-radius: 18px;
  overflow: hidden;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e3ded8;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
