:root {
  --gold: #b8862f;
  --gold-dark: #8a6423;
  --brown: #5a3e1b;
  --brown-dark: #3a2812;
  --cream: #fdf8f0;
  --text: #2b2116;
  --muted: #6b5b47;
  --star: #f5a623;
  --white: #ffffff;
  --success: #2e7d32;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

/* Placeholder photo slots (replace with licensed images) */
.photo-placeholder {
  background: #f1e9d8;
  border: 2px dashed #d9c7a3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a68a5c;
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}
.photo-placeholder.round { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; }
.photo-placeholder.wide { aspect-ratio: 4 / 3; }
.before-after-pair { display: flex; gap: 8px; margin-top: 12px; }
.ba-box {
  flex: 1;
  aspect-ratio: 3 / 4;
  background: #f1e9d8;
  border: 2px dashed #d9c7a3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #a68a5c;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 6px;
}
.ba-box span { font-weight: 400; opacity: .8; }
.verified-text { color: var(--muted); font-size: .78rem; font-weight: 400; }
.before-after-img { border-radius: 8px; margin-top: 12px; width: 100%; }
.benefit-photo { object-fit: cover; border: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-cta {
  display: inline-block;
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  padding: 18px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--brown-dark);
  transition: transform .1s ease;
}
.btn-cta:hover { transform: translateY(-2px); }
.btn-cta:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--brown-dark); }

.cta-note {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 8px;
}

.payment-icons-img {
  max-width: 220px;
  margin: 10px auto 0;
  opacity: .9;
}

/* Header */
.site-header {
  background: #fff;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brown);
}
.promo-bar {
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: .95rem;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 40px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.rating-line {
  color: var(--star);
  font-weight: 700;
  margin-bottom: 10px;
}
.rating-line span { color: var(--muted); font-weight: 400; margin-left: 6px; }
.hero h1 {
  font-size: 1.9rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.hero h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 16px;
}
.hero p.lead { margin-bottom: 18px; color: var(--muted); }
.hero-bullets { list-style: none; margin-bottom: 22px; }
.hero-bullets li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 600;
}
.hero-bullets li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-badge .icon { font-size: 1rem; }

.hero-image-col img { border-radius: 12px; }
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
  margin-top: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.testimonial-card .name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: 700;
}
.avatar-placeholder {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.verified { color: #2e7d5f; font-size: .85rem; }
.stars { color: var(--star); font-size: .9rem; }
.testimonial-headline { font-weight: 700; margin-bottom: 6px; }
.rating-summary {
  text-align: center;
  margin-top: 14px;
  font-size: .9rem;
  color: var(--muted);
}
.rating-summary strong { color: var(--brown); }
.btn-secondary {
  margin-top: 14px;
  background: #fff;
  color: var(--brown);
  border: 2px solid var(--gold);
  box-shadow: none;
}

/* Benefits grid */
.section { padding: 50px 0; }
.section-alt { background: #f7f1e6; }
.section-title {
  text-align: center;
  font-size: 1.7rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 36px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.benefit-card .icon { font-size: 2rem; margin-bottom: 10px; }
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f1e9d8;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle svg { width: 40px; height: 40px; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--brown); }
.benefit-card p { font-size: .92rem; color: var(--muted); }

/* Feel like yourself */
.feel-section { background: var(--brown); color: #fff; }
.feel-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.feel-title { text-align: left; }
.feel-section .section-title { color: #fff; }
.feel-section p { margin: 0 0 16px; }
.feel-section .highlight { font-weight: 700; font-size: 1.2rem; }
.feel-photos.before-after-img { max-width: 420px; }
.stat-ring { position: relative; width: 200px; height: 200px; margin: 0 auto; }
.stat-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.stat-ring .ring-bg { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 10; }
.stat-ring .ring-fg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 20;
}
.stat-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.stat-ring-label strong { font-size: 1.6rem; }
.stat-ring-label span { font-size: .8rem; color: #e8dcc8; margin-top: 4px; }

/* Narrative */
.narrative { max-width: 800px; margin: 0 auto; }
.narrative p { margin-bottom: 16px; }
.narrative .subtitle-line {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 24px;
}
.narrative .emphasis-line { font-weight: 700; color: var(--brown); }
.narrative .lead-in { font-weight: 700; }
.narrative .callout {
  background: #fff;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  font-weight: 700;
  margin: 20px 0;
}

/* Ingredients */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ingredient-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  display: grid;
  grid-template-columns: 120px 1fr;
}
.ingredient-card img { width: 100%; height: 100%; object-fit: cover; }
.ingredient-card .content { padding: 16px; }
.ingredient-card h3 { color: var(--brown); font-size: 1.05rem; margin-bottom: 6px; }
.ingredient-card p { font-size: .9rem; color: var(--muted); }
.ingredient-wide { grid-column: span 2; }

/* Mid CTA band */
.mid-cta {
  background: var(--gold-dark);
  color: #fff;
  text-align: center;
  padding: 44px 0;
}
.mid-cta h2 { font-size: 1.5rem; margin-bottom: 18px; }
.mid-cta .btn-cta { max-width: 420px; margin: 0 auto; background: #fff; color: var(--brown-dark); box-shadow: 0 4px 0 rgba(0,0,0,.2); }
.mid-cta p { margin-top: 14px; }
.mid-cta .secure-note { font-size: .85rem; opacity: .85; margin-top: 6px; }

/* Testimonial grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-grid-6 { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid .testimonial-card p { font-size: .92rem; color: var(--muted); margin-top: 8px; }
.testimonial-grid .testimonial-card .stars { display: block; margin-top: 4px; }
.testimonial-card.photo-first .stars { margin-top: 12px; }
.testimonial-card.photo-first .name-row { font-weight: 700; margin: 6px 0 2px; }

/* Checklist */
.checklist { max-width: 700px; margin: 0 auto; list-style: none; }
.checklist li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #eee;
  position: relative;
  font-weight: 600;
}
.checklist li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* How to use */
.how-to-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  align-items: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps-grid-stacked { grid-template-columns: 1fr; gap: 14px; }
.steps-grid-stacked .step-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 16px 20px; }
.steps-grid-stacked .step-number { margin: 0; flex-shrink: 0; }
.step-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

/* Guarantee */
.guarantee-section {
  background: #fff;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.guarantee-section img { max-width: 160px; margin: 0 auto 16px; }
.guarantee-section h2 { color: var(--brown); margin-bottom: 12px; }
.guarantee-section p { max-width: 650px; margin: 0 auto 10px; color: var(--muted); }
.guarantee-section .emphasis-line { font-weight: 700; color: var(--brown); }
.guarantee-section .tagline { font-style: italic; }
.guarantee-section .contact-line { font-size: .85rem; margin-top: 16px; }

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.package-card {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #eee;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.package-card.featured { border-color: var(--gold); transform: scale(1.03); }
.package-badge {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  padding: 8px;
  font-size: .85rem;
  text-transform: uppercase;
}
.package-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.package-card h3 { color: var(--brown); font-size: 1.1rem; margin: 6px 0; }
.package-card .supply { color: var(--muted); font-size: .85rem; margin-bottom: 12px; }
.package-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.package-card .price span { font-size: 1rem; font-weight: 400; }
.package-card .per-bottle { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.package-card .save { color: var(--success); font-weight: 700; font-size: .9rem; margin-bottom: 14px; }
.package-card .total { font-size: .85rem; color: var(--muted); margin: 10px 0; }
.package-card .total .old { text-decoration: line-through; margin-right: 6px; }

/* FAQ */
.faq { max-width: 750px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--brown);
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  color: var(--muted);
  font-size: .95rem;
}
.faq-item.open .faq-answer {
  padding: 0 20px 18px;
  max-height: 300px;
}
.faq-question .icon { transition: transform .25s ease; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }

/* Final CTA */
.final-cta { text-align: center; background: var(--brown); color: #fff; }
.final-cta .section-title { color: #fff; }
.final-cta .btn-cta { max-width: 420px; margin: 0 auto; }
.final-cta .cta-note { color: #e0d5c5; }

/* Footer */
footer {
  background: #2c2013;
  color: #cbb99f;
  font-size: .8rem;
  padding: 40px 0;
}
footer .footer-intro { text-align: center; margin-bottom: 6px; }
footer .footer-copyright-top { text-align: center; margin: 14px 0 28px; color: #8a7a63; }
footer .footer-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
footer .footer-col { display: flex; flex-direction: column; gap: 10px; }
footer .footer-col-title { color: #fff; font-weight: 700; letter-spacing: 1px; font-size: .75rem; margin-bottom: 4px; }
footer .footer-col a { color: #cbb99f; text-decoration: none; font-weight: 600; }
footer .footer-col a:hover { color: #fff; }
footer .disclaimer { max-width: 900px; margin: 0 auto 14px; line-height: 1.6; }
footer .copyright { text-align: center; margin-top: 20px; color: #8a7a63; }

@media (max-width: 860px) {
  .hero-grid, .ingredients-grid, .packages-grid, .testimonial-grid, .steps-grid,
  .feel-grid, .how-to-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .package-card.featured { transform: none; order: -1; }
  .ingredient-card { grid-template-columns: 90px 1fr; }
  .ingredient-wide { grid-column: span 1; }
  .trust-badges { flex-direction: column; align-items: center; gap: 8px; }
  .feel-title { text-align: center; }
  .stat-ring { margin-top: 20px; }
}
