* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.86rem;
  color: #6b4f3f;
  background: #f3e9e2;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 18px 0 50px;
}

.split {
  display: flex;
  gap: 38px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 50%;
}

.split .visual {
  flex: 1 1 50%;
}

.image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9e2e7;
}

.image-wrap.alt {
  background-color: #e4dfd6;
}

.image-wrap.dark {
  background-color: #c7cfd4;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f1f4;
  color: #25505b;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #20424d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f0ece7;
  color: #1b1b1b;
}

.btn:hover,
.btn:focus {
  background: #122d36;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #e3ddd6;
}

.section {
  padding: 52px 0;
}

.section.soft {
  background: #ffffff;
}

.section.alt {
  background: #eef3f5;
}

.section.deep {
  background: #f0ebe4;
}

.section.bg-house {
  background-image: url("https://images.unsplash.com/photo-1513584684374-8bab748fbf90?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-house .layered {
  background: rgba(32, 66, 77, 0.92);
}

.section.bg-kitchen {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(18, 45, 54, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #20424d;
}

.layered {
  position: relative;
  padding: 40px;
  border-radius: 26px;
  background: #20424d;
  color: #fff;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 8% 12% auto auto;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.layered .btn {
  background: #ffffff;
  color: #20424d;
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 45, 54, 0.08);
}

.form-box label {
  display: block;
  font-weight: 600;
  margin-top: 16px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #c7cfd4;
  border-radius: 10px;
  font-size: 1rem;
}

.form-box button {
  margin-top: 18px;
  width: 100%;
}

.inline-cta {
  color: #20424d;
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  background: #1b1b1b;
  color: #f4f4f4;
  padding: 40px 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a {
  color: #f4f4f4;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(18, 45, 54, 0.18);
  z-index: 6;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid #20424d;
  background: #ffffff;
  border-radius: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
