* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1f2428;
  background-color: #f7f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 18px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e3ddd5;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b5f55;
}

.hero {
  padding: 60px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
}

.img-wrap {
  background-color: #d9d2c8;
  border-radius: 16px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background-color: #f0ebe5;
}

.section-dark {
  background-color: #2b2a27;
  color: #f7f4f0;
}

.section-dark a {
  color: #f7f4f0;
}

.bg-renovation {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e2d9cf;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: #2e4d3d;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #2e4d3d;
  color: #ffffff;
  font-weight: 600;
}

.cta-outline {
  border: 1px solid #2e4d3d;
  background-color: transparent;
  color: #2e4d3d;
}

.inline-link {
  text-decoration: underline;
}

.form-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2d9cf;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bc;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #2e4d3d;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 36px 0 54px;
  background-color: #171716;
  color: #f7f4f0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d5cfc7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 12px;
  background-color: #ffffff;
  border: 1px solid #d4ccc2;
  border-radius: 14px;
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-button {
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background-color: #2e4d3d;
  color: #ffffff;
}

.cookie-reject {
  background-color: #e6dfd7;
  color: #2b2a27;
}

.tagline {
  font-size: 1.05rem;
  color: #5e5147;
}

.muted {
  color: #6b5f55;
}

@media (max-width: 860px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }
}
