* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1f23;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 12px;
  color: #6b6f76;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6e1da;
}

.nav-links a:hover {
  background: #efe9e2;
}

.ad-label {
  font-size: 12px;
  color: #7b5f50;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed #c9b5a8;
  background: #fff6ed;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #f1ebe4;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-content {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 36px;
  line-height: 1.2;
}

.hero-content p {
  color: #3d4046;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1f23;
  color: #ffffff;
  font-weight: 600;
}

.btn:hover {
  background: #35383f;
}

.btn-secondary {
  background: #ffffff;
  color: #1d1f23;
  border: 1px solid #c7c0b9;
}

.btn-secondary:hover {
  background: #f0ebe5;
}

.image-frame {
  background-color: #ded7cf;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 48px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-visual {
  flex: 1;
}

.panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(25, 19, 16, 0.08);
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7b5f50;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #fdfbf9;
  border: 1px solid #efe7df;
  align-items: center;
}

.service-item .image-frame {
  width: 140px;
  height: 110px;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #2b5c52;
}

.cta-link {
  color: #2b5c52;
  font-weight: 600;
}

.cta-link:hover {
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.form-wrap .panel {
  flex: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc6bd;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #5b5f66;
}

.footer {
  padding: 36px 0 60px;
  font-size: 14px;
  color: #4c4f55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer-links a {
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #ece4db;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d1f23;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
  box-shadow: 0 10px 20px rgba(24, 26, 29, 0.2);
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eadfd4;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 30;
  box-shadow: 0 12px 26px rgba(25, 19, 16, 0.14);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-hero {
  padding: 40px 0 20px;
}

.simple-hero h1 {
  font-size: 32px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #ece4db;
}

.highlight-strip {
  background: #1d1f23;
  color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.bg-story {
  background-color: #1d1f23;
  background-image:
    linear-gradient(120deg, rgba(29, 31, 35, 0.88), rgba(29, 31, 35, 0.55)),
    url("https://images.pexels.com/photos/2977317/pexels-photo-2977317.jpeg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border-radius: 26px;
}

.bg-story h2,
.bg-story p,
.bg-story a {
  color: #ffffff;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
