* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1c1a;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  background: #f6f3ef;
  border-bottom: 1px solid #e4ded6;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #1d1c1a;
  color: #f6f3ef;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 6vw 56px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-visual {
  flex: 1;
  min-height: 420px;
  border-radius: 24px;
  background-color: #c7b8a7;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #1d1c1a;
  background: #1d1c1a;
  color: #f6f3ef;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #1d1c1a;
}

.split {
  display: flex;
  gap: 32px;
  padding: 50px 6vw;
  align-items: center;
  background: #fffaf4;
}

.split.alt {
  background: #f0ebe4;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  background-color: #c6b9ab;
  background-size: cover;
  background-position: center;
}

.visual-tools {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=800&q=80");
}

.visual-kitchen {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=800&q=80");
}

.visual-wood {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=800&q=80");
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e3dbd1;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #d6c9bc;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-small {
  height: 180px;
}

.image-medium {
  height: 240px;
}

.image-large {
  height: 320px;
}

.pricing {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 240px;
  border: 1px solid #d8cdc1;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-block {
  background: #1d1c1a;
  color: #f6f3ef;
  padding: 40px 6vw;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.form-block form {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.form-block button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #f5b841;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

footer {
  padding: 32px 6vw 48px;
  background: #1d1c1a;
  color: #f6f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cookies-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fffaf4;
  border: 1px solid #d8cdc1;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  z-index: 10;
}

.cookies-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-wrap {
  padding: 50px 6vw 70px;
  background: #fffaf4;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e4ded6;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-wrap {
  padding: 80px 6vw;
  background: #fffaf4;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.thanks-visual {
  flex: 1;
  min-height: 320px;
  border-radius: 20px;
  background-color: #d4c7b9;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }

  .cookies-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
