:root {
  --bg:        #06100a;
  --ink:       #f0ede6;
  --muted:     rgba(240,237,230,0.55);
  --accent:    #3a8c3f;   /* forest green */
  --accent-2:  #b8963e;   /* warm gold */
  --leaf:      #5cb85c;   /* bright leaf */
  --dark:      #040d07;
  --card-bg:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: none; scroll-behavior: smooth; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
em { font-style: italic; color: var(--accent-2); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(180deg, rgba(6,16,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(0px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; border-color: var(--accent) !important; }

/* ── CINEMATIC SCROLL SECTION ── */
.cinematic {
  position: relative;
  height: 500vh;
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--dark);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(4,13,7,0.75) 100%),
    linear-gradient(180deg, rgba(4,13,7,0.55) 0%, transparent 20%, transparent 72%, rgba(4,13,7,0.85) 100%);
}
.vignette--center {
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, transparent 40%, rgba(4,13,7,0.8) 100%),
    linear-gradient(180deg, rgba(4,13,7,0.5) 0%, transparent 18%, transparent 72%, rgba(4,13,7,0.9) 100%);
}

/* ── OVERLAY COPY ── */
.overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overlay--right {
  text-align: left;
  align-items: flex-start;
  margin-left: 52%;
  transform: translateX(-50%);
}
.reveal-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(24px);
  width: max-content;
  max-width: 88vw;
  opacity: 0;
  will-change: opacity, transform;
}
.overlay--right .reveal-line {
  left: 0;
  transform: translateY(24px);
}
.overlay h1,
.overlay h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.overlay .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--accent-2);
  font-weight: 600;
}
.overlay .sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 420px;
}

/* CTA in overlay */
.cta-wrap { display: flex; gap: 16px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #2d7a2d; transform: translateY(-1px); }
.btn-large { font-size: 1.05rem; padding: 18px 44px; }

/* Corner badge */
.corner-badge {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(58,140,63,0.18);
  border: 1px solid rgba(58,140,63,0.4);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.badge-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--leaf);
}
.badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* Progress bar */
.progress {
  position: absolute;
  left: 40px; right: 40px; bottom: 36px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 12;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  animation: bob 2s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ── BENEFITS ── */
.benefits-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0b1e10 50%, var(--dark) 100%);
  padding: 120px 40px;
}
.benefits-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 64px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.benefit-card:hover {
  border-color: rgba(58,140,63,0.4);
  transform: translateY(-4px);
}
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.benefit-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ── PRODUCTS ── */
.products-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0a1c0f 100%);
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}
.products-inner { max-width: 1000px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: rgba(58,140,63,0.45);
  transform: translateY(-4px);
}
.product-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 100px;
}
.product-badge--muted { background: rgba(184,150,62,0.85); }
.product-badge--soldout { background: rgba(120,120,120,0.75); }
.product-card--soldout.reveal.in { opacity: 0.72; }
.product-card--soldout .price-now { color: var(--muted); }
.product-card--soldout.reveal.in:hover { opacity: 0.92; }
.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 8px;
  max-width: 80%;
}
.product-tag {
  color: var(--accent-2);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.product-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.price-now {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--leaf);
}
.price-was {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.products-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ── STATS ── */
.stats-section {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner { max-width: 1000px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 48px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--leaf);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.stats-note {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(240,237,230,0.4);
}

/* Footer contact */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--leaf); }
.footer-contact .dot { color: rgba(240,237,230,0.3); }

/* ── PRODUCT INFO PANEL ── */
.product-info-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0a1a0e 100%);
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.product-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.info-block {
  flex: 1;
  min-width: 200px;
  padding: 0 32px;
}
.info-block:first-child { padding-left: 0; }
.info-block:last-child  { padding-right: 0; }
.info-divider {
  flex: 0 0 1px;
  width: 1px;
  align-self: stretch;
  background: var(--border);
  min-height: 80px;
  margin: 4px 0;
}
.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info-value {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.info-value strong { color: var(--leaf); font-weight: 600; }
@media (max-width: 768px) {
  .product-info-inner { flex-direction: column; gap: 32px; }
  .info-divider { display: none; }
  .info-block { padding: 0 !important; }
  .product-info-section { padding: 60px 20px; }
}

/* Address line */
.address-line {
  color: rgba(240,237,230,0.25);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* ── PROCESS ── */
.process-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0c1f11 100%);
  padding: 120px 40px;
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
  overflow-x: auto;
}
.step {
  flex: 1;
  min-width: 180px;
  padding: 0 24px;
}
.step-line {
  flex: 0 0 1px;
  height: 1px;
  background: var(--border);
  align-self: center;
  margin-top: -40px;
  min-width: 32px;
}
.step-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(58,140,63,0.3);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ── OUTRO ── */
.outro {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(58,140,63,0.12), transparent 60%), var(--bg);
  padding: 160px 40px;
  text-align: center;
}
.outro-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.outro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
}
.outro p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.fine-print { font-size: 0.78rem !important; color: rgba(240,237,230,0.35) !important; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card.reveal { transition-delay: calc(var(--i, 0) * 0.1s); }
.benefit-card:nth-child(1) { --i: 0; }
.benefit-card:nth-child(2) { --i: 1; }
.benefit-card:nth-child(3) { --i: 2; }
.benefit-card:nth-child(4) { --i: 3; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .overlay--right { margin-left: 0; transform: none; text-align: center; align-items: center; }
  .overlay--right .reveal-line { left: 50%; transform: translate(-50%, 24px); }
  .process-steps { flex-direction: column; }
  .step-line { display: none; }
  .corner-badge { display: none; }
  .benefits-section, .stats-section, .process-section, .outro { padding: 80px 20px; }
}

/* ════════════════════════════════════════════
   INNER PAGES (About / Why / Subscribe / News / Legal)
   ════════════════════════════════════════════ */
.page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 150px 40px 110px;
  min-height: 70vh;
}
.page-main.wide { max-width: 1100px; }
.page-hero { text-align: center; margin-bottom: 64px; }
.page-hero .eyebrow {
  font-size: 0.72rem; letter-spacing: 0.32em; color: var(--accent-2);
  font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 18px;
}
.page-hero h1 {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.08;
}
.page-hero h1 em { font-style: italic; color: var(--accent-2); }
.page-hero .lead {
  margin: 22px auto 0; max-width: 620px; color: var(--muted);
  font-size: 1.05rem; line-height: 1.7; font-weight: 300;
}

/* Prose / legal text */
.prose { color: rgba(240,237,230,0.72); font-size: 0.98rem; line-height: 1.8; }
.prose h2 {
  font-family: "Playfair Display", serif; font-weight: 700; color: var(--ink);
  font-size: 1.6rem; margin: 48px 0 16px;
}
.prose h3 { font-family: "Playfair Display", serif; color: var(--ink); font-size: 1.15rem; margin: 28px 0 8px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--leaf); }
.prose strong { color: var(--ink); }
.prose .muted-note { font-size: 0.85rem; color: var(--muted); border-left: 2px solid var(--accent); padding-left: 16px; margin: 24px 0; }

/* Shipping table */
.ship-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.92rem; }
.ship-table th, .ship-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.ship-table th { color: var(--accent-2); font-weight: 600; letter-spacing: 0.04em; }

/* Feature cards (about vision) */
.vision-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 28px; }
.vision-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.vision-card h3 { font-family: "Playfair Display", serif; color: var(--leaf); font-size: 1.15rem; margin-bottom: 8px; }
.vision-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.coming-soon { display:inline-block; font-size:0.6rem; letter-spacing:0.16em; color:var(--accent-2); border:1px solid rgba(184,150,62,0.4); border-radius:100px; padding:3px 10px; margin-bottom:12px; text-transform:uppercase; }

/* Comparison list (why moringa) */
.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-top: 28px; }
.compare-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; }
.compare-item .x { font-family: "Playfair Display", serif; font-size: 2.4rem; font-weight: 900; color: var(--leaf); line-height: 1; }
.compare-item .vs { display:block; margin-top: 8px; color: var(--muted); font-size: 0.85rem; }

/* Subscribe / newsletter form */
.sub-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 48px 40px; text-align: center; max-width: 560px; margin: 0 auto; }
.sub-form { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.sub-form input {
  flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 100px;
  border: 1px solid var(--border); background: rgba(0,0,0,0.25); color: var(--ink); font-size: 0.95rem;
}
.sub-form input::placeholder { color: rgba(240,237,230,0.4); }
.sub-fine { margin-top: 16px; font-size: 0.78rem; color: var(--muted); }

/* News & Info cards */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; margin-top: 12px; }
.news-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 28px; transition: border-color .3s, transform .3s; display: flex; flex-direction: column;
}
.news-card:hover { border-color: rgba(58,140,63,0.4); transform: translateY(-4px); }
.news-card .tag { font-size: 0.66rem; letter-spacing: 0.16em; color: var(--accent-2); text-transform: uppercase; margin-bottom: 12px; }
.news-card h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; margin-bottom: 10px; line-height: 1.25; }
.news-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.news-card .news-link { margin-top: 18px; color: var(--leaf); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.news-card.placeholder { opacity: 0.6; border-style: dashed; }

/* Site footer (all pages) */
.site-footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 40px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-col h4 { font-family: "Playfair Display", serif; font-size: 1rem; margin-bottom: 16px; color: var(--ink); }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--leaf); }
.footer-brand { max-width: 260px; }
.footer-brand .fb-logo { display:flex; align-items:center; gap:10px; font-family:"Playfair Display",serif; font-weight:700; margin-bottom:14px; }
.footer-brand .fb-logo img { height: 26px; }
.footer-brand p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom { max-width: 1100px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.78rem; color: rgba(240,237,230,0.4); text-align: center; line-height: 1.7; }
@media (max-width: 768px) {
  .page-main { padding: 120px 22px 80px; }
  .footer-inner { gap: 28px; }
}
