* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1f1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.topbar {
  background: #14120f;
  color: #f8f6f2;
  padding: 16px 0;
}

.topbar-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: #f0c66a;
  color: #2a1d0d;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero {
  min-height: 70vh;
  background-image: url("https://images.unsplash.com/photo-1720532181565-47a80ab06eb0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: stretch;
}

.hero-overlay {
  background: rgba(17, 16, 14, 0.6);
  padding: 64px 0;
  width: 100%;
  display: flex;
}

.hero-content {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-button {
  background: #f5b74f;
  color: #1f1f1f;
  border: none;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.cta-outline {
  border: 1px solid #f5b74f;
  color: #fdf9f2;
  padding: 12px 20px;
  border-radius: 6px;
  background: transparent;
}

.section {
  padding: 70px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: #d9c8ad;
  border-radius: 12px;
  overflow: hidden;
}

.story-section {
  background: #fff7ec;
}

.trust-section {
  background-image: url("https://images.unsplash.com/photo-1702012464343-a9966c1a9ead?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.trust-overlay {
  background: rgba(22, 18, 13, 0.72);
  padding: 50px 0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(15, 12, 8, 0.08);
}

.card-body {
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #6b3f1d;
}

.reveal {
  background: #fefcf8;
}

.reveal-banner {
  background-image: url("https://images.unsplash.com/photo-1534177616072-ef7dc120449d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.reveal-overlay {
  background: rgba(26, 18, 10, 0.75);
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 26px rgba(19, 13, 9, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d6cbbc;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: #7a3e13;
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #1f1f1f;
  color: #f9f6f1;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.footer {
  background: #1a1714;
  color: #f4f1ec;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.legal-note {
  font-size: 0.85rem;
  color: #d9d2c7;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  color: #1c1914;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(320px, 92%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.secondary-button {
  background: #f1ece6;
  color: #1f1f1f;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 60px 0 40px;
  background: #fff5e8;
}

.page-hero .image-frame {
  background: #d9c8ad;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 16px rgba(15, 12, 8, 0.08);
}

.legal-section {
  padding: 50px 0;
  background: #fff;
}

.legal-section p {
  margin: 0 0 14px;
}

@media (max-width: 720px) {
  .hero-content {
    max-width: 100%;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
