* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1a;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1f1d1a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw;
  background: #efe9e2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #d9cfc4;
  border-radius: 12px;
}

.split {
  display: flex;
  gap: 36px;
  padding: 64px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1;
  min-width: 280px;
}

.hero {
  background: #f1e6da;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
}

.media-box {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d8cabb;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  background-color: #e2d6c8;
}

.service-card h3 {
  margin: 0 0 6px;
}

.price {
  font-weight: 700;
  color: #6d4d32;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f1d1a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #3c352d;
}

.btn.secondary {
  background: #d9cfc4;
  color: #1f1d1a;
}

.inline-link {
  font-weight: 600;
}

.panel {
  background: #fffaf4;
  padding: 24px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-stack label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-stack input,
.form-stack select,
.form-stack textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7c7b8;
  background: #fff;
  font-size: 0.95rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: italic;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

footer {
  padding: 40px 6vw 80px;
  background: #efe9e2;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.background-block {
  background: #f5ede4;
}

.background-image {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-material {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=800&q=80");
}

.bg-workspace {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=800&q=80");
}

.bg-texture {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=800&q=80");
}

.references {
  font-size: 0.85rem;
  color: #5f564c;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
