* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #efe7dc;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ad-label {
  background: #2f2a25;
  color: #fff;
  padding: 10px 12px;
  font-size: 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
}

.sidebar-note {
  font-size: 13px;
  color: #4f473f;
}

.content {
  flex: 1;
  padding: 36px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-color: #2f2a25;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f6c453;
  color: #1f1f1f;
  font-weight: 600;
}

.section {
  padding: 28px 32px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-dark {
  background: #2c2a27;
  color: #fff;
}

.section-photo {
  background-color: #c8b9a4;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
}

.section-photo .cta-button {
  background: #2f2a25;
  color: #fff;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #c8b9a4;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #f8f5f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  background: #d1c2ac;
}

.price {
  font-weight: 700;
  color: #2f2a25;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: #f7f3ee;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc4b3;
  background: #fff;
  font-size: 15px;
}

button {
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-end;
  background: #fff1c9;
  padding: 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 220px;
}

.footer {
  margin-top: 30px;
  padding: 18px 22px;
  background: #efe7dc;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #2b2824;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f6c453;
  color: #1f1f1f;
  font-weight: 600;
}

.cookie-actions .secondary {
  background: #ffffff;
}

.is-hidden {
  display: none;
}

.legal-block {
  background: #f9f6f1;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .content {
    padding: 28px 22px 80px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    align-self: stretch;
    position: static;
  }
}
