* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2330;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e6e0d9;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #7b5e48;
  border: 1px solid #d3c4b6;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff5e8;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 44px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.center {
  justify-content: center;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1e7dc;
  font-size: 12px;
  color: #5d4636;
  width: fit-content;
}

.hero-title {
  font-size: 36px;
  line-height: 1.2;
}

.section-title {
  font-size: 26px;
  line-height: 1.3;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: #d8d1c8;
  height: 100%;
  min-height: 280px;
}

.image-frame.tall {
  min-height: 360px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #efe7de;
}

.price {
  font-weight: 700;
  color: #355267;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #2c3e50;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.18);
}

.btn-outline {
  background: transparent;
  border: 1px solid #2c3e50;
  color: #2c3e50;
}

.btn-soft {
  background: #e6f0f7;
  color: #2c3e50;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.callout {
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #efe7de;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #efe7de;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .image-frame {
  min-height: 160px;
  border-radius: 0;
}

.highlight {
  background: #2c3e50;
  color: #ffffff;
  padding: 38px 32px;
  border-radius: 20px;
}

.muted {
  color: #5f6b78;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #efe7de;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dcd0c4;
  font-size: 15px;
  font-family: inherit;
}

.inline-note {
  font-size: 13px;
  color: #6c6259;
}

.background-venue {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #ffffff;
}

.background-venue .btn {
  background: #ffffff;
  color: #2c3e50;
}

.footer {
  padding: 40px 24px;
  background: #ffffff;
  border-top: 1px solid #efe7de;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #efe7de;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  z-index: 12;
  box-shadow: 0 12px 26px rgba(28, 35, 48, 0.12);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.legal-section {
  padding: 40px 0;
}

.simple-hero {
  padding: 40px 0 10px;
}

.simple-hero .image-frame {
  min-height: 240px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.references {
  font-size: 13px;
  color: #6b7a89;
}

.disclaimer {
  font-size: 13px;
  color: #6d5a4a;
}

.note-box {
  padding: 18px;
  background: #fff5e8;
  border-radius: 14px;
  border: 1px solid #f1dfc9;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px 0 0;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
