:root {
  --black: #090807;
  --charcoal: #171412;
  --burgundy: #5a0d14;
  --burgundy-2: #7d1820;
  --cream: #f8f0df;
  --cream-2: #fffaf0;
  --gold: #d9ad55;
  --amber: #a76025;
  --muted: #756b60;
  --line: rgba(217, 173, 85, 0.28);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-user-select: none;
  user-select: none;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream-2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 8, 7, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 173, 85, 0.25);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img { width: 30px; height: 30px; }

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(248, 240, 223, 0.86);
  font-size: 0.93rem;
  font-weight: 650;
}

.menu a:hover, .lang a:hover { color: var(--gold); }

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 240, 223, 0.76);
  font-size: 0.86rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: linear-gradient(180deg, #efcf82, var(--gold));
  color: #171007;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(217, 173, 85, 0.25);
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn.dark { background: var(--black); color: var(--cream); border-color: rgba(217, 173, 85, 0.4); box-shadow: none; }
.btn.outline { background: transparent; color: var(--cream); border-color: rgba(217, 173, 85, 0.54); box-shadow: none; }

.hero {
  background:
    radial-gradient(circle at 80% 12%, rgba(217, 173, 85, 0.16), transparent 28%),
    linear-gradient(135deg, #080706 0%, #21100f 44%, #100d0b 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 40px;
  align-items: center;
  padding: 76px 0 58px;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  border: 1px solid rgba(217, 173, 85, 0.42);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.45rem, 6vw, 3.2rem);
  max-width: 820px;
}

h2 { font-size: clamp(2rem, 4vw, 2.3rem); color: var(--black); }
h3 { font-size: 0.85rem; color: var(--black); }

.hero p {
  max-width: 720px;
  color: rgba(248, 240, 223, 0.84);
  font-size: 1.14rem;
  margin: 20px 0 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  border: 1px solid rgba(217, 173, 85, 0.32);
  background: rgba(255, 250, 240, 0.07);
  color: rgba(248, 240, 223, 0.92);
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-art {
  position: relative;
  padding: 18px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 3% 4%;
  background: linear-gradient(180deg, rgba(217, 173, 85, 0.23), rgba(90, 13, 20, 0.16));
  border: 1px solid rgba(217, 173, 85, 0.26);
  transform: skewY(-3deg);
}

.hero-art img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.55));
}

.urgency {
  background: linear-gradient(90deg, var(--burgundy), #2b0b0d);
  color: var(--cream);
  text-align: center;
  padding: 13px 16px;
  font-weight: 850;
  border-top: 1px solid rgba(217, 173, 85, 0.26);
  border-bottom: 1px solid rgba(217, 173, 85, 0.26);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.benefits { grid-template-columns: repeat(6, 1fr); }
.card {
  background: #fff;
  border: 1px solid rgba(90, 13, 20, 0.12);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(31, 22, 15, 0.06);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 4px;
  color: var(--black);
  background: linear-gradient(180deg, #f6df9b, var(--gold));
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.about-box {
  background: var(--black);
  color: var(--cream);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid rgba(217, 173, 85, 0.28);
}

.about-box h2 { color: var(--cream); }
.about-box p { color: rgba(248, 240, 223, 0.82); }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.fact {
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 6px;
}

.fact strong { display: block; color: var(--gold); font-size: 1.35rem; }

.ingredients { grid-template-columns: repeat(5, 1fr); }
.ingredient h3 { margin-bottom: 8px; }
.ingredient p, .card p { color: var(--muted); margin: 0; }

.works {
  background: linear-gradient(135deg, var(--burgundy), #241010);
  color: var(--cream);
}
.works .section { padding: 64px 0; }
.works h2 { color: var(--cream); }
.works p { color: rgba(248, 240, 223, 0.82); max-width: 850px; }

.pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.ribbon {
  position: absolute;
  top: 14px;
  right: -42px;
  rotate: 35deg;
  width: 170px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-card img { height: 210px; object-fit: contain; margin: 8px auto 18px; }
.price-card .pack { color: var(--burgundy); font-weight: 950; letter-spacing: 0.04em; text-transform: uppercase; }
.price-card ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.price-card li { padding: 4px 0; }
.retail { color: var(--muted); text-decoration: line-through; }
.now { font-size: 1.65rem; color: var(--black); font-weight: 950; margin: 8px 0 16px; }

.reviews { grid-template-columns: repeat(4, 1fr); }
.stars { color: #b67a20; font-weight: 950; margin-bottom: 10px; }
.reviewer { margin-top: 14px; color: var(--burgundy); font-weight: 850; }

.faq { display: grid; gap: 10px; }
details {
  background: #fff;
  border: 1px solid rgba(90, 13, 20, 0.12);
  border-radius: 8px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--black);
}
details p { color: var(--muted); margin: 12px 0 0; }

.disclaimer {
  background: #fff7e6;
  border-top: 1px solid rgba(217, 173, 85, 0.35);
  border-bottom: 1px solid rgba(217, 173, 85, 0.35);
}
.disclaimer .section { padding: 34px 0; color: #5d4a32; font-size: 0.95rem; }

footer {
  background: var(--black);
  color: rgba(248, 240, 223, 0.8);
  padding: 36px 0 92px;
}
footer .foot {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 12px; }
.foot button, .foot a {
  border: 1px solid rgba(217, 173, 85, 0.3);
  background: transparent;
  color: var(--cream);
  border-radius: 4px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-sticky {
  display: none;
  position: fixed;
  z-index: 55;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: rgba(9, 8, 7, 0.94);
  border-top: 1px solid rgba(217, 173, 85, 0.35);
}
.mobile-sticky .btn { width: 100%; }

.modal, .exit-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}
.modal.active, .exit-popup.active { display: flex; }
.modal-card {
  width: min(560px, 100%);
  background: var(--cream-2);
  border: 1px solid rgba(217, 173, 85, 0.42);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.modal-card p { color: var(--muted); }
.close {
  float: right;
  border: 0;
  background: var(--black);
  color: var(--cream);
  border-radius: 4px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.exit-card {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px) {
  .menu { display: none; }
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 48px; }
  .benefits, .ingredients, .reviews { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { min-height: 66px; }
  .nav .btn { display: none; }
  .lang { font-size: 0.78rem; }
  .hero-inner, .section { width: min(100% - 24px, 1160px); }
  .hero-ctas .btn { width: 100%; }
  .section-head { display: block; }
  .benefits, .ingredients, .reviews, .facts { grid-template-columns: 1fr; }
  .exit-card { grid-template-columns: 1fr; text-align: center; }
  .exit-card img { max-height: 210px; margin: auto; object-fit: contain; }
  footer .foot { display: block; }
  .foot-links { margin-top: 18px; }
  .mobile-sticky { display: block; }
}
