* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f7f4f0;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a5638;
  border: 1px solid #c7b39f;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff4e7;
}

.hero {
  padding: 40px 6vw 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-text p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-media {
  flex: 1 1 320px;
  background: #e3d7cc;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.primary-btn {
  background: #1b1b1b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  align-self: flex-start;
}

.outline-btn {
  background: transparent;
  color: #1b1b1b;
  border: 1px solid #1b1b1b;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1b1b1b;
  color: #f7f4f0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #d9cec4;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #f1e5d8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #e1d6cb;
}

.price-tag {
  font-weight: 600;
  color: #7a5638;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid #7a5638;
  background: rgba(255, 255, 255, 0.06);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7a5638;
  margin-top: 7px;
}

.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border: 1px solid #d7c9bd;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 50px;
  background: #151515;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c6b6a8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 92px;
  background: #7a5638;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 15;
}

.simple-hero {
  padding: 50px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-banner {
  background: #ded2c6;
  border-radius: 20px;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 320px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  background: #1b1b1b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9cec4;
}

.notice {
  background: #fff2e6;
  border-radius: 14px;
  padding: 16px;
  color: #4d3322;
}

@media (max-width: 780px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 86px;
  }
}
