* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  background: #f7f4f0;
  padding: 24px 6%;
  border-bottom: 1px solid #e2ddd6;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a5f52;
  background: #efe8df;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #b95b3a;
}

.hero {
  display: flex;
  gap: 40px;
  padding: 60px 6%;
  align-items: center;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: #b95b3a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #2a2a2a;
}

.hero-image {
  flex: 1 1 380px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #d6c8ba;
}

.section {
  padding: 60px 6%;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.section.alt {
  background: #efe8df;
}

.section-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-image {
  flex: 1 1 320px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #d6c8ba;
}

.inline-link {
  color: #b95b3a;
  font-weight: 600;
}

.split-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-image {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8ded4;
}

.price {
  font-weight: 700;
  color: #b95b3a;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #1f1f1f;
  color: #fff;
  padding: 22px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5cbbf;
  font-size: 1rem;
}

.note {
  font-size: 0.9rem;
  color: #6a5f52;
}

footer {
  background: #1f1f1f;
  color: #f7f4f0;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-references {
  font-size: 0.85rem;
  color: #d8cfc4;
}

.page-hero {
  padding: 50px 6%;
  background: #efe8df;
}

.page-hero h1 {
  font-size: 2.2rem;
}

.content {
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.two-column {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 320px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #efe8df;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .hero-title {
    font-size: 2rem;
  }

  .sticky-cta {
    position: static;
  }
}
