* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1b1a;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1c1b1a;
  text-decoration: none;
}

a.link-inline {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  background: #f2dfcf;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cta-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1c1b1a;
  font-size: 14px;
  cursor: pointer;
  background: #1c1b1a;
  color: #f7f4f1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ghost-btn {
  background: transparent;
  color: #1c1b1a;
}

.cta-btn:hover,
.ghost-btn:hover,
.link-inline:hover {
  transform: translateY(-1px);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 48px 80px;
  align-items: center;
}

.hero-text {
  flex: 1 1 340px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 44px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hero-media {
  flex: 1 1 360px;
  margin-left: auto;
  background: #e7dfd8;
  padding: 16px;
  border-radius: 28px;
  transform: translateY(18px);
}

.hero-media img {
  border-radius: 20px;
}

.section {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: #ffffff;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.offset-card {
  background: #fdf9f5;
  border-radius: 24px;
  padding: 28px;
  flex: 1 1 280px;
  transform: translateX(16px);
}

.offset-card.secondary {
  transform: translateX(-12px);
  background: #efe7df;
}

.img-wrap {
  background: #e7dfd8;
  padding: 12px;
  border-radius: 22px;
}

.img-wrap img {
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5dbd1;
}

.service-card .price {
  font-weight: 600;
  font-size: 18px;
}

.testimonial {
  background: #f2e9e0;
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 240px;
}

.form-panel {
  background: #1c1b1a;
  color: #f7f4f1;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
}

.form-panel button {
  align-self: flex-start;
}

.footer {
  background: #1f1c1a;
  color: #f7f4f1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #d6ccc3;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1c1b1a;
  color: #f7f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  background: #f7f4f1;
  color: #1c1b1a;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #1c1b1a;
  background: #1c1b1a;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1c1b1a;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-block div {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e5dbd1;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 24px;
  }

  .section {
    padding: 48px 24px;
  }

  .footer {
    padding: 32px 24px;
  }
}
