:root {
  --red: #b70f18;
  --red-dark: #7f0b12;
  --black: #121212;
  --ink: #242424;
  --muted: #69645d;
  --cream: #fff8ea;
  --cream-2: #f8efe1;
  --gold: #d6aa42;
  --line: #e9dfcf;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 18, 18, .12);
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.modal-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
}

a { color: inherit; }

button, a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus { top: 16px; }

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section-pad { padding: 64px 0; }

.offer-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 9px 14px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-dark), var(--red), #2a0b0d);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 70;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 19px;
  text-decoration: none;
  color: var(--black);
}

.brand img { border-radius: 7px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #e51d28, var(--red));
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(183, 15, 24, .22);
  cursor: pointer;
}

.btn:hover, .btn:focus-visible {
  background: var(--red-dark);
  outline: 3px solid rgba(214, 170, 66, .36);
}

.btn-outline {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(214, 170, 66, .24), transparent 31%),
    linear-gradient(180deg, var(--cream), var(--white) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 34px;
  min-height: 650px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 720px;
  color: var(--black);
  font-size: clamp(42px, 7vw, 35px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 4.4vw, 29px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
}

.hero-sub {
  max-width: 670px;
  margin: 22px 0;
  color: #403d38;
  font-size: 19px;
}

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

.badges span {
  padding: 8px 11px;
  border: 1px solid #ead7b7;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #3b3123;
  font-size: 13px;
  font-weight: 800;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #8c6518;
  font-size: 16px;
}

.rating span, .stars { color: var(--gold); letter-spacing: 0; }

.micro-copy {
  margin: 12px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.hero-product img {
  position: relative;
  z-index: 1;
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .22));
}

.product-glow {
  position: absolute;
  width: min(82vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 170, 66, .34), rgba(183, 15, 24, .08), transparent 70%);
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.trust-grid article:last-child { border-right: 0; }

.trust-grid span {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.trust-grid p { margin: 6px 0 0; color: #f5ede1; }

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.prose p {
  margin-top: 0;
  font-size: 18px;
}

.soft-section {
  background: linear-gradient(180deg, var(--cream), #fffdf8);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.benefit-card,
.review-card,
.price-card,
.steps article,
.faq-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(33, 24, 15, .05);
}

.benefit-card { padding: 24px; }

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.benefit-card p, .review-card p, .price-card p { color: var(--muted); }

.notice {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fffaf0;
  color: #5c4d35;
  font-size: 14px;
}

.centred {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.serving-box {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.serving-box p { margin: 0; }

.serving-box p + p { margin-top: 8px; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

th, td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--black);
  color: var(--white);
}

tr:last-child td { border-bottom: 0; }

.dark-band {
  background: linear-gradient(135deg, #171412, #2a080b);
  color: var(--white);
}

.dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band .section-head p:not(.eyebrow), .dark-band .steps p { color: #efe1d0; }

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

.steps article {
  padding: 26px;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.urgency {
  display: inline-block;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--cream);
  color: #3b3123;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-top: 22px;
  color: var(--red);
}

.package {
  margin: 2px 0 12px;
  color: var(--black);
  font-weight: 900;
}

.price-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin: 4px auto 18px;
}

.bonus {
  margin: 0;
  color: var(--red) !important;
  font-weight: 900;
}

.shipping {
  color: #13813b !important;
  font-weight: 900;
}

.retail { margin-bottom: 0; }

.price {
  margin: auto 0 18px;
  color: var(--black) !important;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.comparison-table table { min-width: 780px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: var(--white);
  font-weight: 900;
}

.review-card strong, .review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
}

.faq-section { background: #fffdf9; }

.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.faq-cta {
  position: sticky;
  top: 132px;
  padding: 24px;
  text-align: center;
}

.faq-cta img {
  max-height: 260px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 58px;
  padding: 16px 48px 16px 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 24px;
}

details[open] summary::after { content: "-"; }

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 86px;
  background: var(--black);
  color: var(--white);
}

.site-footer h2 { color: var(--white); font-size: 28px; }
.site-footer p { max-width: 560px; color: #e8dccd; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links button {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .1);
}

.mobile-sticky span {
  color: var(--black);
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .62);
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 110;
  width: min(92vw, 760px);
  max-height: 88vh;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.exit-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.exit-grid img {
  max-height: 300px;
  margin: auto;
  object-fit: contain;
}

.policy-modal h2 { padding-right: 44px; }
.policy-modal p, .policy-modal li { color: var(--muted); }

@media (max-width: 980px) {
  .site-header { top: 56px; }
  .hero-grid, .split, .faq-layout, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: 0; }
  .hero-copy { order: 1; }
  .hero-product {
    order: 2;
    min-height: 380px;
  }
  .hero-product img { max-height: 440px; }
  .trust-grid, .card-grid, .steps, .pricing-grid, .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.featured { transform: none; }
  .faq-cta { position: static; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 128px; }
  body { padding-bottom: 74px; }
  .section-pad { padding: 48px 0; }
  .offer-separator { display: none; }
  .site-header { top: 58px; }
  .nav-wrap { min-height: 64px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px;
    border-radius: var(--radius);
  }
  .nav-links .btn { margin-top: 6px; }
  h1 { font-size: clamp(39px, 13vw, 58px); }
  .hero-sub { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .trust-grid, .card-grid, .steps, .pricing-grid, .review-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .trust-grid article:last-child { border-bottom: 0; }
  .price-card img { height: 190px; }
  .mobile-sticky { display: flex; }
  .exit-grid { grid-template-columns: 1fr; text-align: center; }
  .exit-grid img { max-height: 220px; }
  .modal { padding: 24px 18px; }
}

@media (max-width: 420px) {
  .container, .nav-wrap { width: min(100% - 24px, var(--max)); }
  .brand span { font-size: 17px; }
  .offer-bar { font-size: 12px; }
  .site-header { top: 65px; }
  .badges span { width: 100%; }
  .mobile-sticky .btn { padding-inline: 12px; }
}
