/* ── VARIABLES & RESET ─────────────────────────────────── */
:root {
  --bg: #ffffff;
  --green: #2a4a30;
  --green-light: #3a5e42;
  --cream: #ffeec7;
  --cream-dark: #f0d080;
  --text: #0d0d0d;
  --text-mid: #6b6b6b;
  --text-light: #a0a0a0;
  --border: #ebebeb;
  --section-alt: #f5f4f1;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 6%; height: 64px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { font-size: 0.83rem; color: var(--text-mid); text-decoration: none; font-weight: 500; padding: 7px 12px; border-radius: 7px; transition: all 0.15s; white-space: nowrap; }
.nav-link:hover { color: var(--text); background: var(--section-alt); }
.nav-link.active { color: var(--green); font-weight: 700; background: var(--cream); }
.nav-sep { width: 1px; height: 18px; background: var(--border); margin: 0 10px; flex-shrink: 0; }
.nav-cta { background: var(--green); color: #ffffff; padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 0.82rem; text-decoration: none; transition: all 0.2s; margin-left: 14px; flex-shrink: 0; white-space: nowrap; }
.nav-cta:hover { background: var(--green-light); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 6% 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.nav-mobile.open { display: block; }
.nav-mobile-link { display: block; font-size: 0.9rem; color: var(--text-mid); text-decoration: none; font-weight: 500; padding: 11px 14px; border-radius: 8px; transition: all 0.15s; }
.nav-mobile-link:hover { color: var(--text); background: var(--section-alt); }
.nav-mobile-link.active { color: var(--green); font-weight: 700; background: var(--cream); }
.nav-mobile-sep { height: 1px; background: var(--border); margin: 8px 0; }
.nav-mobile-cta { display: block; background: var(--green); color: white; padding: 13px 20px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; text-align: center; margin-top: 10px; }
.nav-mobile-cta:hover { background: var(--green-light); }

/* ── SHARED SECTION STYLES ─────────────────────────────── */
section { padding: 80px 6%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; color: var(--text); margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--text-mid); line-height: 1.75; font-weight: 400; max-width: 600px; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary { background: var(--green); color: #ffffff; padding: 15px 28px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; letter-spacing: 0.1px; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(42,74,48,0.25); }
.btn-secondary { background: transparent; color: var(--text); padding: 15px 26px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; text-decoration: none; border: 1.5px solid var(--border); transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn-secondary:hover { border-color: var(--text); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* ── PROOF STRIP ───────────────────────────────────────── */
.proof-strip { padding: 18px 0 24px; text-align: center; }
.proof-rotate { display: inline-flex; align-items: flex-start; gap: 10px; height: 22px; overflow: hidden; }
.proof-sep { align-self: center; width: 1px; height: 14px; background: var(--border); flex-shrink: 0; }
.proof-caption { align-self: center; font-size: 0.82rem; color: var(--text-mid); white-space: nowrap; }
.proof-rotate-inner { display: flex; flex-direction: column; animation: rotateStats 12s ease-in-out infinite; }
@keyframes rotateStats {
  0%,18%  { transform: translateY(0); }
  25%,43% { transform: translateY(-22px); }
  50%,68% { transform: translateY(-44px); }
  75%,93% { transform: translateY(-66px); }
  100%    { transform: translateY(0); }
}
.proof-stat { height: 22px; line-height: 22px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--green); white-space: nowrap; }

/* ── REVEAL ANIMATION ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { background: #0d0d0d; padding: 22px 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.5); }
.footer-meta { font-size: 0.73rem; color: rgba(255,255,255,0.25); }

/* ── WOOCOMMERCE OVERRIDES ─────────────────────────────── */
.woocommerce-page { padding-top: 64px; }
.woocommerce form .form-row label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  width: 100%; transition: border-color 0.15s;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--green); outline: none; }
.woocommerce #payment { background: var(--section-alt); border-radius: 12px; }
.woocommerce #place_order,
.woocommerce button.button.alt {
  background: var(--green) !important; color: var(--cream) !important;
  padding: 16px 32px !important; border-radius: 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important; font-size: 1rem !important;
  border: none !important; cursor: pointer !important; transition: all 0.2s !important;
}
.woocommerce #place_order:hover { background: var(--green-light) !important; }
.woocommerce-cart-form__cart-item td,
.woocommerce table.shop_table th { font-family: 'Plus Jakarta Sans', sans-serif; }
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--green) !important;
}
.woocommerce-checkout h3,
.woocommerce-cart h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: -0.3px; }
.woocommerce-checkout-review-order-table,
.shop_table { border-radius: 12px; overflow: hidden; border: 1px solid var(--border) !important; }
.wc-block-checkout__main, .wc-block-cart__main { max-width: 1100px; margin: 0 auto; }

/* ── MOBILE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  section { padding: 56px 5%; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  footer { flex-direction: column; text-align: center; }
  /* Proof strip: hide caption & separator, show only rotating stat centered */
  .proof-sep { display: none; }
  .proof-caption { display: none; }
  .proof-strip { overflow: hidden; padding: 14px 5% 18px; }
  .proof-rotate { max-width: 100%; }
  .proof-stat { font-size: 0.8rem; white-space: normal; text-align: center; }
}
@media (max-width: 480px) {
  section { padding: 40px 4%; }
}
