* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f3f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 10px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 16px;
  background: #ece5df;
}

.ad-label {
  font-size: 13px;
  color: #5a4f4a;
  background: #f2e7e0;
  padding: 6px 10px;
  border-radius: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 48px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  padding: 24px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.panel.light {
  background: #f8f0ea;
}

.panel.dark {
  background: #1f1d1b;
  color: #f9f4f0;
}

.panel.image-overlay {
  background-color: rgba(24, 21, 19, 0.65);
  background-blend-mode: multiply;
  color: #f8f1ec;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1742281695025-d6bf76d6e743?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fef9f5;
  position: relative;
  overflow: hidden;
}

.bg-textile-1 {
  background-image: url("https://images.unsplash.com/photo-1742967420800-b2d27be6eedc?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-textile-2 {
  background-image: url("https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-textile-3 {
  background-image: url("https://images.unsplash.com/photo-1748944084924-bef8de7650f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.55);
}

.hero .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 18px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.info-card img {
  border-radius: 16px;
  width: 100%;
  height: 180px;
  background-color: #e6ddd6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f6ebe4;
}

.service-item strong {
  font-size: 16px;
}

.service-price {
  font-weight: 700;
  color: #7a3d2f;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbbcb2;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #e2d6cf;
}

.image-frame img {
  width: 100%;
  height: 260px;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight {
  flex: 1 1 220px;
  padding: 16px;
  background: #efe4db;
  border-radius: 18px;
}

.footer {
  padding: 24px;
  background: #1f1d1b;
  color: #f9f4f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #7a3d2f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 10;
  display: none;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  font-size: 14px;
  color: #4f463f;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
