* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f1f1f;
  background: #f7f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 8vw 12px 8vw;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0ded0;
  color: #5b3c27;
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.section {
  padding: 56px 8vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
  margin-top: 0;
  font-size: 2.6rem;
}

.hero-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1f1f;
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.button.light {
  background: #f0ded0;
  color: #4b2f1c;
}

.button:hover {
  transform: translateY(-2px);
}

.inline-link {
  border-bottom: 1px solid #1f1f1f;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #f1e7df;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: #7c5b43;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.highlight {
  background: #efe7ff;
  padding: 30px;
  border-radius: 18px;
}

.testimonial {
  background: #fff7ed;
  border-radius: 16px;
  padding: 20px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #1f1f1f;
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9cfc7;
  font-size: 0.95rem;
  font-family: inherit;
}

footer {
  padding: 40px 8vw;
  background: #1f1f1f;
  color: #f6f0ec;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 10;
}

#cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #e9ded6;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title h2 {
  margin: 0;
}

.subtle {
  color: #6f5a4a;
}

.page-header {
  padding: 40px 8vw 20px;
}

.page-header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.contact-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: #6f6f6f;
}
