.page {
  display: flex;
  min-height: 100vh;
  background: #f6f4f1;
  color: #1d1b19;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #141311;
  color: #f4f1ed;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-disclosure {
  font-size: 12px;
  line-height: 1.4;
  background: #2f2b26;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: #f4f1ed;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: #e6c27a;
  color: #1b160f;
}

.btn-secondary {
  background: #ffffff;
  color: #1b160f;
  border: 1px solid #d5d0c9;
}

.btn:hover,
.link-button:hover {
  filter: brightness(0.95);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  position: relative;
  padding: 70px 64px;
  color: #fefcf9;
  background-color: #2a2622;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 17, 0.6);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: #d9d1c5;
  padding: 8px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(29, 27, 25, 0.08);
}

.card-image {
  background: #e6e0d7;
  border-radius: 12px;
  padding: 6px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.card-price {
  font-size: 20px;
  font-weight: 700;
  color: #2e2215;
}

.section-contrast {
  background: #efe8de;
  position: relative;
  overflow: hidden;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1639117474927-58d2d5a45b45?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwyNHx8S29uenVsdGFjZSUyMHBybyUyMHByb2RlamNlJTIwbmElMjBtYXJrZXRwbGFjZWNoJTJDJTIwa3RlciVDMyVBMSUyMHAlQzUlOTlldiVDMyVBMWQlQzMlQUQlMjBkYXRhJTIwbmElMjByJUM1JUFGc3QufGNzfDB8MHx8fDE3ODM1MDUxNzh8MA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.section-contrast .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.inline-link {
  color: #1b160f;
  font-weight: 600;
  text-decoration: underline;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid #e6c27a;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing-item {
  flex: 1 1 220px;
  background: #fffaf1;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e8dfd2;
}

.form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 26px rgba(29, 27, 25, 0.08);
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4cdc4;
  background: #faf8f5;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 32px 64px 64px;
  font-size: 14px;
  color: #4a433b;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #4a433b;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #141311;
  color: #f4f1ed;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(29, 27, 25, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-page {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-page h1 {
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  background: #f6f1e8;
  padding: 14px;
  border-radius: 12px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
  }

  .section,
  .footer,
  .simple-page {
    padding: 32px 24px;
  }
}
