/* ============================================================
   WELLNESS RESET JOURNEY — Master Stylesheet v7
   Color Scheme: Clay · Cream · Bark · Sage · Gold
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --clay:        #C4714A;
  --clay-light:  #E8956D;
  --clay-dark:   #9A5235;
  --cream:       #FAF6F0;
  --warm-white:  #FDF9F4;
  --bark:        #3D2B1F;
  --bark-soft:   #5C4033;
  --sage:        #7A8C6E;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --text:        #2A1A10;
  --text-soft:   #6B4E3D;
  --border:      rgba(196,113,74,0.18);
  --shadow-sm:   0 2px 8px rgba(61,43,31,0.08);
  --shadow-md:   0 6px 24px rgba(61,43,31,0.12);
  --shadow-lg:   0 16px 48px rgba(61,43,31,0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --max-w:       1100px;
  --section-py:  80px;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text); background: var(--warm-white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--clay-dark); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--bark); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 500; }
p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); display: inline-block; margin-bottom: 0.75rem; }
.eyebrow-dark { color: var(--gold-light); }

blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--bark-soft); border-left: 3px solid var(--clay); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--cream); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-bark { background: var(--bark); color: var(--cream); }
.section-bark h1, .section-bark h2, .section-bark h3, .section-bark h4 { color: var(--cream); }
.section-bark p { color: rgba(250,246,240,0.85); }
.section-bark .eyebrow { color: var(--gold-light); }
.section-clay { background: var(--clay); color: #fff; }
.section-clay h1, .section-clay h2, .section-clay h3 { color: #fff; }
.section-clay p { color: rgba(255,255,255,0.9); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(253,249,244,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-badge { width: 40px; height: 40px; background: var(--clay); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-size: 1rem; font-weight: 600; flex-shrink: 0; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--bark); }
.nav-logo-tagline { font-family: var(--font-body); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--bark-soft); padding: 6px 12px; border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s; text-decoration: none; }
.nav-links a:hover { color: var(--clay); background: rgba(196,113,74,0.06); }
.nav-cta { background: var(--clay) !important; color: #fff !important; padding: 8px 18px !important; border-radius: var(--radius-sm) !important; }
.nav-cta:hover { background: var(--clay-dark) !important; color: #fff !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--bark); color: rgba(250,246,240,0.75); padding: 64px 0 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,246,240,0.12); }
.footer-brand .nav-logo-name { color: var(--cream); font-size: 1.15rem; }
.footer-brand .nav-logo-tagline { color: rgba(250,246,240,0.5); }
.footer-brand .nav-logo-badge { background: var(--clay); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(250,246,240,0.6); margin-top: 12px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(250,246,240,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--clay-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(250,246,240,0.45); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: rgba(250,246,240,0.45); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--clay-light); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; padding: 13px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; text-decoration: none; transition: all 0.2s; line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,113,74,0.35); }
.btn-secondary { background: transparent; color: var(--clay); border: 1.5px solid var(--clay); }
.btn-secondary:hover { background: var(--clay); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
.btn-gold { background: var(--gold); color: var(--bark); font-weight: 600; }
.btn-gold:hover { background: var(--gold-light); color: var(--bark); transform: translateY(-1px); }
.btn-lg { font-size: 1rem; padding: 16px 36px; border-radius: var(--radius-md); }
.btn-xl { font-size: 1.05rem; padding: 18px 44px; border-radius: var(--radius-md); }
.btn-sm { font-size: 0.8rem; padding: 9px 18px; }
.btn-block { width: 100%; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--cream) 0%, #F0E8DC 60%, var(--cream) 100%); padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(196,113,74,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(196,113,74,0.1); border: 1px solid rgba(196,113,74,0.25); color: var(--clay-dark); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 300; line-height: 1.15; color: var(--bark); margin-bottom: 8px; }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero-sub { font-size: 1.1rem; color: var(--text-soft); max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-soft); }
.hero-proof-item { display: flex; align-items: center; gap: 6px; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--bark); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.stat-item { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(250,246,240,0.12); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; color: var(--gold-light); line-height: 1; display: block; }
.stat-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,240,0.55); margin-top: 4px; display: block; }

/* ── CARDS ───────────────────────────────────────────────── */
.pain-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; }
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pain-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.pain-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--bark); }
.pain-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ── WELLNESS SCORE CALCULATOR ───────────────────────────── */
.calc-section { background: var(--cream); padding: var(--section-py) 0; }
.calc-wrap { max-width: 700px; margin: 0 auto; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.calc-header { background: linear-gradient(135deg, var(--bark) 0%, var(--bark-soft) 100%); padding: 32px 40px 28px; text-align: center; }
.calc-header h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
.calc-header p { font-size: 0.875rem; color: rgba(250,246,240,0.7); margin: 0; }
.calc-progress-bar { height: 4px; background: rgba(250,246,240,0.15); margin-top: 20px; border-radius: 2px; overflow: hidden; }
.calc-progress-fill { height: 100%; background: var(--gold-light); border-radius: 2px; transition: width 0.4s ease; }
.calc-body { padding: 36px 40px; }
.calc-question-label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin-bottom: 8px; }
.calc-question-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.calc-question-text { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; color: var(--bark); margin-bottom: 24px; line-height: 1.3; }
.calc-options { display: flex; flex-direction: column; gap: 10px; }
.calc-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s; background: var(--warm-white); }
.calc-option:hover { border-color: var(--clay-light); background: rgba(196,113,74,0.04); }
.calc-option.selected { border-color: var(--clay); background: rgba(196,113,74,0.07); }
.calc-option input[type="radio"] { display: none; }
.calc-option-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.calc-option.selected .calc-option-dot { border-color: var(--clay); background: var(--clay); }
.calc-option.selected .calc-option-dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.calc-option-text { font-size: 0.9rem; color: var(--text); line-height: 1.4; }
.calc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.calc-step-count { font-size: 0.8rem; color: var(--text-soft); }
.calc-result { text-align: center; padding: 8px 0; }
.calc-score-ring { width: 120px; height: 120px; margin: 0 auto 20px; position: relative; }
.calc-score-ring svg { transform: rotate(-90deg); }
.calc-score-ring-track { fill: none; stroke: var(--border); stroke-width: 8; }
.calc-score-ring-fill  { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.calc-score-number { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--bark); }
.calc-score-label { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--bark); margin-bottom: 8px; }
.calc-score-desc { font-size: 0.9rem; color: var(--text-soft); max-width: 400px; margin: 0 auto 24px; line-height: 1.6; }
.pillar-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; text-align: left; }
.pillar-item { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.pillar-name { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-bottom: 6px; }
.pillar-score-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.pillar-score-fill { height: 100%; border-radius: 3px; background: var(--clay); }
.pillar-score-val { font-size: 0.78rem; color: var(--text-soft); }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-md); position: relative; transition: box-shadow 0.2s, transform 0.2s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card.featured { border-color: var(--clay); border-width: 2px; }
.product-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--clay); color: #fff; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.product-badge-gold { background: var(--gold); color: var(--bark); }
.product-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--bark); margin-bottom: 4px; }
.product-quantity { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 20px; }
.product-price-wrap { margin-bottom: 20px; }
.product-price-original { font-size: 0.875rem; color: var(--text-soft); text-decoration: line-through; margin-bottom: 2px; }
.product-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; color: var(--clay); line-height: 1; }
.product-price-note { font-size: 0.8rem; color: var(--sage); margin-top: 4px; }
.product-savings { display: inline-block; background: rgba(122,140,110,0.12); color: var(--sage); font-size: 0.78rem; font-weight: 500; padding: 3px 10px; border-radius: 100px; margin-bottom: 16px; }
.product-features { list-style: none; margin-bottom: 24px; }
.product-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--text); padding: 5px 0; border-bottom: 1px solid rgba(196,113,74,0.06); }
.product-features li:last-child { border-bottom: none; }
.product-features li::before { content: '\2713'; color: var(--sage); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--bark-soft); line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { font-size: 0.82rem; font-weight: 500; color: var(--text-soft); }
.testimonial-author span { color: var(--clay); }

/* ── FORMS ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--bark-soft); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(196,113,74,0.12); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--text-soft); margin-top: 8px; }
.lead-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.lead-form .form-input { flex: 1; min-width: 160px; }

/* ── INLINE POPUP ────────────────────────────────────────── */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(61,43,31,0.55); z-index: 9000; align-items: center; justify-content: center; padding: 20px; }
.popup-overlay.active { display: flex; }
.popup-box { background: #fff; border-radius: var(--radius-xl); padding: 40px 36px; max-width: 480px; width: 100%; position: relative; box-shadow: var(--shadow-lg); text-align: center; }
.popup-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.4rem; color: var(--text-soft); cursor: pointer; line-height: 1; padding: 4px; }
.popup-close:hover { color: var(--bark); }
.popup-icon { font-size: 2.5rem; margin-bottom: 12px; }
.popup-box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.popup-box p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 20px; }

/* ── WHATSAPP CHAT BUBBLE ────────────────────────────────── */
.wa-bubble { position: fixed; bottom: 28px; right: 28px; z-index: 8000; }
.wa-bubble-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; border: none; outline: none; }
.wa-bubble-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-bubble-btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-chat-panel { display: none; position: absolute; bottom: 70px; right: 0; width: 300px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.wa-chat-panel.open { display: block; }
.wa-chat-header { background: #075E54; padding: 16px 18px; display: flex; align-items: center; gap: 10px; }
.wa-chat-avatar { width: 38px; height: 38px; background: var(--clay); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-size: 1rem; font-weight: 500; flex-shrink: 0; }
.wa-chat-name { font-size: 0.9rem; font-weight: 600; color: #fff; line-height: 1.2; }
.wa-chat-status { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.wa-chat-body { padding: 16px; background: #ECE5DD; min-height: 80px; }
.wa-chat-bubble-msg { background: #fff; border-radius: 0 10px 10px 10px; padding: 10px 14px; font-size: 0.875rem; color: var(--text); line-height: 1.5; box-shadow: 0 1px 2px rgba(0,0,0,0.1); max-width: 90%; }
.wa-chat-faqs { padding: 12px 16px; border-top: 1px solid var(--border); }
.wa-chat-faqs p { font-size: 0.75rem; color: var(--text-soft); margin-bottom: 8px; font-weight: 500; }
.wa-faq-btn { display: block; width: 100%; text-align: left; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-size: 0.8rem; color: var(--clay-dark); cursor: pointer; margin-bottom: 6px; transition: background 0.2s; font-family: var(--font-body); }
.wa-faq-btn:hover { background: rgba(196,113,74,0.08); }
.wa-chat-footer { padding: 12px 16px; border-top: 1px solid var(--border); }
.wa-chat-footer a { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; padding: 10px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.wa-chat-footer a:hover { background: #128C7E; color: #fff; }

/* ── DIVIDERS ────────────────────────────────────────────── */
.divider { width: 48px; height: 2px; background: var(--clay); margin: 16px auto; border-radius: 1px; }
.divider-left { margin-left: 0; }

/* ── COMPLIANCE PAGES ────────────────────────────────────── */
.compliance-hero { background: linear-gradient(135deg, var(--cream) 0%, #F0E8DC 100%); padding: 56px 0 48px; text-align: center; border-bottom: 1px solid var(--border); }
.compliance-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.compliance-meta { font-size: 0.82rem; color: var(--text-soft); margin-top: 8px; }
.compliance-body { max-width: 820px; margin: 0 auto; padding: 56px 24px; }
.compliance-body h2 { font-size: 1.4rem; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.compliance-body h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--clay-dark); }
.compliance-body p, .compliance-body li { font-size: 0.925rem; color: var(--text); line-height: 1.75; margin-bottom: 0.75rem; }
.compliance-body ul, .compliance-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.compliance-body a { color: var(--clay); }
.compliance-body a:hover { color: var(--clay-dark); }
.compliance-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,113,74,0.08); border: 1px solid rgba(196,113,74,0.2); color: var(--clay-dark); font-size: 0.82rem; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-sm); margin-bottom: 24px; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, var(--cream) 0%, #F0E8DC 100%); padding: 72px 0 64px; text-align: center; border-bottom: 1px solid var(--border); }
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; box-shadow: var(--shadow-md); position: sticky; top: 90px; }
.profile-avatar { width: 100px; height: 100px; background: linear-gradient(135deg, var(--clay) 0%, var(--clay-dark) 100%); border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.profile-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--bark); margin-bottom: 4px; }
.profile-title { font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; margin-bottom: 16px; }
.profile-achievements { list-style: none; text-align: left; }
.profile-achievements li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--text); padding: 7px 0; border-bottom: 1px solid rgba(196,113,74,0.06); }
.profile-achievements li:last-child { border-bottom: none; }
.profile-achievements li::before { content: '\2713'; color: var(--sage); font-weight: 600; flex-shrink: 0; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--clay), var(--clay-light)); border-radius: 1px; }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -26px; top: 4px; width: 14px; height: 14px; background: var(--clay); border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 2px var(--clay); }
.timeline-step { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 4px; }
.timeline-item h4 { font-size: 1.05rem; color: var(--bark); margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ── VALUES GRID ─────────────────────────────────────────── */
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.value-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-info-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(196,113,74,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 2px; }
.contact-info-value { font-size: 0.9rem; color: var(--text); }
.contact-info-value a { color: var(--clay); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--bark); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: color 0.2s; }
.faq-question:hover { color: var(--clay); }
.faq-icon { font-size: 1.2rem; color: var(--clay); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer { display: none; padding: 0 0 18px; font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── OFFER / FUNNEL PAGES ────────────────────────────────── */
.offer-hero { background: linear-gradient(135deg, var(--bark) 0%, var(--bark-soft) 100%); padding: 56px 0 48px; text-align: center; }
.offer-hero h1 { color: var(--cream); }
.offer-hero p  { color: rgba(250,246,240,0.8); }
.upsell-banner { background: linear-gradient(135deg, var(--clay) 0%, var(--clay-dark) 100%); padding: 20px 24px; text-align: center; }
.upsell-banner p { color: #fff; font-size: 0.95rem; font-weight: 500; margin: 0; line-height: 1.5; }
.upsell-banner strong { color: var(--gold-light); }
.flavor-selector { display: flex; gap: 12px; margin: 16px 0; flex-wrap: wrap; }
.flavor-option { flex: 1; min-width: 120px; border: 2px solid var(--border); border-radius: var(--radius-md); padding: 14px 12px; text-align: center; cursor: pointer; transition: all 0.2s; background: #fff; }
.flavor-option:hover { border-color: var(--clay-light); }
.flavor-option.selected { border-color: var(--clay); background: rgba(196,113,74,0.06); }
.flavor-option input[type="radio"] { display: none; }
.flavor-emoji { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.flavor-name  { font-size: 0.85rem; font-weight: 500; color: var(--bark); }

/* ── ORDER SUCCESS PAGES ─────────────────────────────────── */
.success-hero { background: linear-gradient(135deg, var(--sage) 0%, #5C7A4E 100%); padding: 56px 0 48px; text-align: center; }
.success-hero h1 { color: #fff; }
.success-hero p  { color: rgba(255,255,255,0.85); }
.success-icon { width: 72px; height: 72px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.next-steps-list { list-style: none; counter-reset: steps; }
.next-steps-list li { counter-increment: steps; display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.next-steps-list li:last-child { border-bottom: none; }
.next-steps-list li::before { content: counter(steps); width: 32px; height: 32px; background: var(--clay); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; flex-shrink: 0; }

/* ── THANK YOU PAGE ──────────────────────────────────────── */
.thankyou-hero { background: linear-gradient(135deg, var(--cream) 0%, #F0E8DC 100%); padding: 56px 0 48px; text-align: center; border-bottom: 1px solid var(--border); }
.txt-content-section { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 36px; margin: 32px 0; }
.txt-content-section h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--bark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--clay); }
.txt-content-section p { font-size: 0.925rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; }

/* ── ADMIN INDEX ─────────────────────────────────────────── */
.admin-header { background: var(--bark); padding: 28px 32px; }
.admin-header h1 { color: var(--cream); font-size: 1.6rem; margin-bottom: 4px; }
.admin-header p { color: rgba(250,246,240,0.65); font-size: 0.875rem; margin: 0; }
.admin-stats { background: rgba(250,246,240,0.06); padding: 12px 32px; font-size: 0.82rem; color: rgba(250,246,240,0.7); border-bottom: 1px solid rgba(250,246,240,0.1); }
.admin-stats strong { color: var(--gold-light); }
.admin-section { padding: 28px 32px; border-bottom: 1px solid var(--border); }
.admin-section h2 { font-size: 1.1rem; color: var(--bark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.admin-btn-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 500; color: var(--clay-dark); background: #fff; text-decoration: none; transition: all 0.2s; cursor: pointer; }
.admin-btn:hover { background: var(--clay); color: #fff; border-color: var(--clay); }
.admin-search { width: 100%; max-width: 480px; padding: 10px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: #fff; outline: none; transition: border-color 0.2s; margin-bottom: 16px; }
.admin-search:focus { border-color: var(--clay); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th { background: var(--cream); color: var(--bark-soft); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 12px; text-align: left; border-bottom: 2px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid rgba(196,113,74,0.06); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(196,113,74,0.03); }
.admin-table a { color: var(--clay); font-weight: 500; text-decoration: none; font-size: 0.8rem; padding: 3px 8px; border-radius: 4px; background: rgba(196,113,74,0.08); white-space: nowrap; display: inline-block; margin: 1px; }
.admin-table a:hover { background: var(--clay); color: #fff; }
.admin-category-row td { background: var(--cream); font-weight: 600; color: var(--bark); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 8px 12px; }

/* ── DISCLOSURE / DISCLAIMER ─────────────────────────────── */
.disclosure-banner { background: rgba(196,113,74,0.08); border: 1px solid rgba(196,113,74,0.2); border-radius: var(--radius-sm); padding: 10px 16px; font-size: 0.78rem; color: var(--clay-dark); text-align: center; margin-bottom: 24px; line-height: 1.5; }
.page-disclaimer { background: var(--cream); border-top: 1px solid var(--border); padding: 20px 24px; font-size: 0.78rem; color: var(--text-soft); text-align: center; line-height: 1.6; }

/* ── CHECKLIST PAGES ─────────────────────────────────────── */
.checklist-hero { background: linear-gradient(135deg, var(--cream) 0%, #F0E8DC 100%); padding: 56px 0 48px; text-align: center; border-bottom: 1px solid var(--border); }
.checklist-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.checklist-item:last-child { border-bottom: none; }
.checklist-num { width: 32px; height: 32px; background: var(--clay); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; flex-shrink: 0; }
.checklist-item h4 { font-size: 1rem; margin-bottom: 4px; }
.checklist-item p  { font-size: 0.875rem; color: var(--text-soft); margin: 0; line-height: 1.6; }

/* ── UTILITY ─────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.hidden { display: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pillar-breakdown { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-logo-tagline { display: none; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .lead-form { flex-direction: column; }
  .lead-form .form-input { min-width: 100%; }
  .profile-card { position: static; }
  .calc-body { padding: 24px 20px; }
  .calc-header { padding: 24px 20px 20px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  :root { --section-py: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-price { font-size: 2rem; }
}
@media print {
  .site-header, .site-footer, .wa-bubble, .popup-overlay { display: none !important; }
}
