* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f7f5f1;
  padding: 24px 0 10px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #efe7da;
  padding: 6px 10px;
  border-radius: 16px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 60px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.split-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  padding-top: 40px;
}

.hero .split-card {
  background: #fff6e6;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  background: #eadfcc;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #f7f5f1;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
}

.text-link {
  text-decoration: underline;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.service-card img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: #e6e0d5;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #efe7da;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.quote {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #e4ddd0;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7c1b8;
  font-size: 0.95rem;
}

.cta-strip {
  background: #1a1a1a;
  color: #f7f5f1;
  padding: 36px 0;
}

.cta-strip .btn {
  border-color: #f7f5f1;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.site-footer {
  background: #efe7da;
  padding: 40px 0 60px;
  margin-top: 40px;
}

.disclaimer {
  font-size: 0.9rem;
  max-width: 720px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #1a1a1a;
  padding: 10px 16px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  background: #f1e9dc;
  padding: 50px 0;
}

.contact-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  flex: 1;
}

.section-bg {
  background: #f1e9dc;
}

.section-bg .split-card {
  background: #fff;
}

.bg-context {
  background-color: #dcd4c7;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .split,
  .contact-grid {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
}
