* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1c1a;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: #f0e7df;
  padding: 10px 24px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ad-label {
  font-weight: 600;
  color: #7a4a30;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e6d8cc;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: #f9efe6;
}

main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 8vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.section-title {
  font-size: 2.2rem;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.1rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #efe0d5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 600;
  color: #7a4a30;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid #c9a389;
  background: #7a4a30;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: #fff;
  color: #7a4a30;
}

.btn:hover {
  transform: translateY(-1px);
}

.image-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: #e9ded3;
}

.image-wrap img {
  width: 100%;
  height: 360px;
}

.note {
  padding: 16px 18px;
  background: #fff5ec;
  border-left: 4px solid #c9a389;
  border-radius: 14px;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #efe0d5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9c8ba;
  font-family: inherit;
}

.inline-link {
  color: #7a4a30;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid #efe0d5;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 30;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.sticky-cta span {
  font-weight: 600;
}

.footer {
  background: #efe4d9;
  padding: 30px 8vw;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 0.95rem;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #1e1c1a;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 40;
}

.banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner .btn {
  background: #f7f4f1;
  color: #1e1c1a;
}

.banner .btn.secondary {
  background: transparent;
  border: 1px solid #f7f4f1;
  color: #f7f4f1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 28, 24, 0.55);
}

.bg-hero .col {
  position: relative;
  z-index: 1;
}

.bg-soft {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1e1c1a;
}

.bg-soft .col {
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  border-radius: 20px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list p {
  margin: 0;
}

.contact-block {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #efe0d5;
}

.wide-image img {
  height: 260px;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: space-between;
  }
}
