* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f4f2;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1c1c1c;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 18px;
  background: #efeae4;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #d9d1c9;
  color: #3c352e;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 0 64px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  flex: 1;
  min-height: 360px;
  background: #c8c1bb;
  border-radius: 24px;
  overflow: hidden;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.subtext {
  font-size: 18px;
  color: #4e4a45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1c1c1c;
  color: #fff;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f0d8b5;
  color: #1c1c1c;
}

.btn:hover,
.nav a:hover {
  opacity: 0.88;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 48px 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text {
  flex: 1;
}

.split-section .media-box {
  flex: 1;
  min-height: 280px;
  background: #d4cec7;
  border-radius: 20px;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

.card-media {
  background: #d1c9c1;
  border-radius: 14px;
  overflow: hidden;
  height: 140px;
}

.price {
  font-weight: 700;
  color: #1f1c18;
}

.highlight {
  background: #efe3d7;
  border-radius: 20px;
  padding: 28px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  color: #4a4640;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccc2b8;
  font-size: 15px;
}

.form-panel textarea {
  min-height: 100px;
  resize: vertical;
}

.muted {
  font-size: 13px;
  color: #5c544c;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
}

.footer {
  padding: 48px 0 32px;
  font-size: 14px;
  color: #4e4a45;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: #6c645b;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  max-width: 320px;
  z-index: 10;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-bg {
  background: #cfc7bf;
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.services-bg {
  background: #c5bdb6;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.about-bg {
  background: #d6cec6;
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.contact-bg {
  background: #d7cfc7;
  background-image: url("https://images.unsplash.com/photo-1494173853739-c21f58b16055?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.panel-bg {
  background: #e6dfd7;
}

.notice {
  background: #f8efe6;
  border-radius: 18px;
  padding: 20px;
  font-size: 15px;
}

.legal-block {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
