/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }

/* ── Base ── */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #f8f4f1;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: #b8401f; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Advertorial bar ── */
.advertorial-bar {
  background: #1a1a1a;
  color: #eee;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Layout ── */
.container { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* ── Hero ── */
.hero { padding: 28px 0 8px; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 22px;
  color: #111;
  letter-spacing: -.01em;
}
h1 .hl {
  background: linear-gradient(transparent 55%, #ffd84d 55%);
  padding: 0 2px;
}

.byline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 14px;
  margin: 0 0 18px;
}
.byline img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.lede { font-size: 17px; color: #444; font-style: italic; margin: 0 0 24px; }

/* ── Article ── */
article { padding: 8px 0 48px; }
article p { margin: 0 0 18px; }
article h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.3;
  color: #111;
  margin: 40px 0 16px;
  font-weight: 700;
}
article h3 { font-size: 20px; color: #111; margin: 28px 0 10px; }
article ul { margin: 0 0 22px; padding-left: 22px; }
article li { margin: 0 0 8px; }

/* ── Figures ── */
figure { margin: 28px 0; padding: 0; }
figure img, figure video { width: 100%; border-radius: 6px; }
figcaption { font-size: 13px; color: #777; text-align: center; margin-top: 8px; padding: 0 16px; }

/* ── Pull quote ── */
.pull-quote {
  border-left: 4px solid #b8401f;
  background: #fff;
  padding: 18px 22px;
  margin: 24px 0;
  font-style: italic;
  color: #333;
  border-radius: 0 4px 4px 0;
}

/* ── Callout ── */
.callout {
  background: #fff7f1;
  border: 1px solid #f0d9c8;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 8px;
}
.callout p { margin: 0 0 14px; }
.callout p.no-mb { margin-bottom: 0; }

/* ── Checklist ── */
.checklist { list-style: none; padding-left: 0; }
.checklist li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.checklist li::before {
  content: "✓";
  color: #2c8a4a;
  font-weight: 700;
  position: absolute;
  left: 4px;
  top: 0;
}

/* ── Stats grid ── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.stat {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}
.stat .n { display: block; font-size: 28px; font-weight: 700; color: #b8401f; line-height: 1; }
.stat .l { display: block; font-size: 13px; color: #555; margin-top: 6px; }

/* ── Order card ── */
.order-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  margin: 24px 0 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.order-img { margin: 0 0 18px; }
.order-title {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
}
.pct {
  display: block;
  font-size: 64px;
  color: #c0392b;
  font-weight: 900;
  line-height: 1;
  margin: 6px 0 14px;
}
.first-time {
  color: #c0392b;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 20px;
  letter-spacing: .02em;
}

/* ── CTA button ── */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: #c0392b;
  color: #fff !important;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid #c0392b;
  box-shadow: 0 6px 14px rgba(192,57,43,.25);
  transition: transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
  cursor: pointer;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192,57,43,.35);
  text-decoration: none;
}
.cta-btn .arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Warning banner ── */
.warning-banner {
  background: #fff;
  border: 1.5px solid #c0392b;
  color: #7a1f12;
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  border-radius: 8px;
  margin: 18px 0 0;
  font-size: 14px;
}

/* ── Disclaimer ── */
.disclaimer-section {
  background: #7a1f12;
  color: #f5d7d2;
  padding: 36px 24px;
  font-size: 13.5px;
  line-height: 1.7;
  text-align: center;
}
.disclaimer-section p {
  margin: 0 0 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer-section p:last-child { margin-bottom: 0; }

/* ── Footer ── */
footer {
  background: #1a1a1a;
  color: #bbb;
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
}
footer a { color: #ddd; margin: 0 10px; }

/* ── Responsive ── */
@media (min-width: 768px) {
  body { font-size: 18px; }
  h1 { font-size: 44px; }
  article h2 { font-size: 32px; }
  .container { padding: 0 24px; }
  figure { margin: 32px 0; }
}
