* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1e1d;
  background-color: #f6f3f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.site-header {
  padding: 28px 6vw 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #e0d6cf;
  background: #f9f6f2;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  background: #efe2d6;
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 36px 6vw 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 24px;
  background-color: #ded4cc;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1e1d;
  color: #fff;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: #b76a4c;
}

.button.light {
  background: #efe2d6;
  color: #1f1e1d;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.narrow {
  max-width: 620px;
}

.image-frame {
  background-color: #e7deda;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  flex: 1 1 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(31, 30, 29, 0.08);
}

.service-card .card-image {
  height: 170px;
  background-color: #eadfd7;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: #b76a4c;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.magazine-column {
  flex: 1 1 260px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(31, 30, 29, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-area {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 32px rgba(31, 30, 29, 0.08);
}

.form-area label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-area input,
.form-area select,
.form-area textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c8c1;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-area textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #efe2d6;
  padding: 18px 20px;
  border-radius: 16px;
}

.footer {
  padding: 36px 6vw 60px;
  background: #1f1e1d;
  color: #f6f3f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(31, 30, 29, 0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  background: #efe2d6;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-feature {
  background-color: #c8b8ad;
  background-image: url("https://images.unsplash.com/photo-1470337458703-46ad1756a187?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 28px;
  color: #f9f6f2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(31, 30, 29, 0.08);
}

.legal-text {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  font-size: 0.9rem;
  color: #5b5551;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .site-header {
    padding: 24px 6vw 16px;
  }
}
