* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  padding: 24px 40px 16px;
  background: #efe9e2;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8b6c4e;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 40px;
}

.section-dark {
  background: #1e2b2f;
  color: #f6f4f1;
}

.section-contrast {
  background: #e4ddd4;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1.1;
}

.hero-title {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-media {
  flex: 1;
  position: relative;
  margin-top: 24px;
}

.image-frame {
  background: #c4b8a6;
  padding: 6px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.offset-block {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.offset-text {
  flex: 1.2;
  background: #f6f4f1;
  padding: 24px;
  margin-top: -32px;
  border-left: 4px solid #8b6c4e;
}

.offset-media {
  flex: 0.9;
  margin-left: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #8b6c4e;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button-outline {
  background: transparent;
  color: #8b6c4e;
  border: 2px solid #8b6c4e;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-weight: 600;
}

.price {
  font-size: 20px;
  color: #8b6c4e;
  font-weight: 600;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 360px;
}

.form-wrapper {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  max-width: 520px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9c1b5;
  font-size: 15px;
}

.footer {
  padding: 32px 40px;
  background: #efe9e2;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1e2b2f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  font-size: 13px;
  color: #5b5b5b;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.list {
  padding-left: 18px;
}

.layout-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.layout-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.split-column {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split-column > div {
  flex: 1;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: #8b6c4e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.inline-link {
  color: #8b6c4e;
  font-weight: 600;
}

.image-rail {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.image-rail .image-frame {
  flex: 1;
}

.no-phone {
  font-weight: 600;
  color: #8b6c4e;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 16px;
  line-height: 1.6;
  max-width: 680px;
}

@media (max-width: 960px) {
  .hero,
  .offset-block,
  .split-column,
  .asym-row {
    flex-direction: column;
  }

  .hero-title {
    font-size: 36px;
  }

  .header,
  .section,
  .footer {
    padding: 32px 20px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
