* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #11110f;
  color: #f6f4f0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #d6b98c;
}

.brand strong {
  font-size: 24px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-note {
  font-size: 13px;
  color: #c9c9c1;
}

.content {
  flex: 1;
  padding: 32px 32px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  background: linear-gradient(120deg, rgba(17, 17, 15, 0.8), rgba(17, 17, 15, 0.2)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: #f6f4f0;
  padding: 48px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 40px;
  max-width: 600px;
  margin: 0;
}

.hero p {
  max-width: 520px;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #d6b98c;
  color: #11110f;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #f6f4f0;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.section {
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.section.dark {
  background: #1f1d1a;
  color: #f6f4f0;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.split .text {
  flex: 1;
}

.section.split .media {
  flex: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 18px;
  background: #f3efe9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.prices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #f6f4f0;
  border: 1px solid #ece6dc;
}

.price-item strong {
  font-size: 18px;
}

.badge {
  background: #11110f;
  color: #f6f4f0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-grid label {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6cec1;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.inline-link {
  color: #b07a32;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #11110f;
  color: #f6f4f0;
  padding: 16px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #d6b98c;
  color: #11110f;
}

.cookie-reject {
  background: #ffffff;
  color: #11110f;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(214, 185, 140, 0.4);
  border-radius: 50%;
  top: -60px;
  right: 40px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #f3efe9;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-strip img {
  flex: 1 1 160px;
  min-height: 140px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .content {
    padding: 24px 20px 120px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }
}
