/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --navy:   #1B2D4F;
  --teal:   #2A7F6F;
  --accent: #E8A020;
  --light:  #F4F6F9;
  --text:   #2E2E2E;
  --muted:  #666;
  --white:  #fff;
  --border: #e2e8f0;
  --radius: 8px;
  --max:    860px;
}

/* ── BASE ── */
body { font-family:'Lora',Georgia,serif; background:var(--white); color:var(--text); font-size:16px; line-height:1.7; }
a { color:var(--teal); text-decoration:none; }
a:hover { text-decoration:underline; color:var(--teal); }
img { max-width:100%; height:auto; display:block; }

/* ── HEADER ── */
.site-header { background:var(--navy); padding:14px 0; position:sticky; top:0; z-index:100; box-shadow:0 2px 8px rgba(0,0,0,.18); }
.hdr-inner { max-width:var(--max); margin:0 auto; padding:0 20px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.site-logo { font-family:'Playfair Display',Georgia,serif; font-size:20px; font-weight:700; color:var(--white); white-space:nowrap; text-decoration:none; }
.site-logo span { color:var(--accent); }
.site-nav { display:flex; flex-wrap:wrap; gap:6px 14px; align-items:center; }
.site-nav a { color:#ccd6e8; font-family:'DM Sans',sans-serif; font-size:13px; font-weight:500; text-decoration:none; transition:color .2s; }
.site-nav a:hover { color:var(--accent); text-decoration:none; }

/* ── FOOTER ── */
.site-footer { background:var(--navy); color:#aab8cc; padding:32px 20px 24px; font-size:12px; font-family:'DM Sans',sans-serif; line-height:1.8; text-align:center; }
.site-footer a { color:#ccd6e8; text-decoration:underline; }
.site-footer a:hover { color:var(--accent); }
.footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:6px 16px; margin-bottom:14px; }
.footer-disclaimer { max-width:700px; margin:10px auto 0; font-size:11px; color:#8898aa; }

/* ── LAYOUT ── */
.container { max-width:var(--max); margin:0 auto; padding:0 20px; }
.page-hero { background:var(--light); padding:52px 20px 38px; text-align:center; border-bottom:2px solid var(--border); }
.page-hero h1 { font-family:'Playfair Display',Georgia,serif; font-size:34px; color:var(--navy); margin-bottom:10px; line-height:1.25; }
.page-hero .subtitle { font-size:15px; color:var(--muted); font-family:'DM Sans',sans-serif; max-width:580px; margin:0 auto; }

/* ── PROSE ── */
.prose { max-width:var(--max); margin:0 auto; padding:40px 20px 64px; }
.prose h2 { font-family:'Playfair Display',Georgia,serif; font-size:24px; color:var(--navy); margin:40px 0 14px; padding-bottom:8px; border-bottom:2px solid var(--light); }
.prose h3 { font-family:'DM Sans',sans-serif; font-size:18px; font-weight:700; color:var(--navy); margin:24px 0 8px; }
.prose p { margin-bottom:16px; }
.prose ul, .prose ol { padding-left:24px; margin-bottom:16px; }
.prose li { margin-bottom:7px; }
.prose strong { color:var(--navy); }
.prose table { width:100%; border-collapse:collapse; margin-bottom:20px; font-family:'DM Sans',sans-serif; font-size:14px; }
.prose th { background:var(--navy); color:var(--white); padding:10px 14px; text-align:left; }
.prose td { padding:9px 14px; border-bottom:1px solid var(--border); }
.prose tr:nth-child(even) td { background:var(--light); }

/* ── BUTTONS ── */
.btn { display:inline-block; background:var(--teal); color:var(--white); font-family:'DM Sans',sans-serif; font-weight:700; font-size:16px; padding:14px 40px; border-radius:40px; text-align:center; border:none; cursor:pointer; transition:background .2s,transform .15s; text-decoration:none; }
.btn:hover { background:#1f6357; transform:translateY(-1px); text-decoration:none; color:var(--white); }
.btn-lg { font-size:18px; padding:16px 56px; }
.btn-center { display:flex; justify-content:center; margin:28px 0; }

/* ── DISCLOSURE BOX ── */
.disclosure-box { background:#fffbe6; border:1px solid #f0d070; border-radius:var(--radius); padding:12px 18px; font-size:13px; font-family:'DM Sans',sans-serif; color:#6b5500; margin:28px 0; line-height:1.5; }

/* ── INGREDIENT CARDS ── */
.ingredient-grid { display:grid; grid-template-columns:1fr; gap:14px; margin:20px 0; }
.ingredient-card { background:var(--light); border-left:4px solid var(--teal); border-radius:var(--radius); padding:16px 20px; }
.ingredient-card strong { display:block; font-family:'DM Sans',sans-serif; font-size:15px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.ingredient-card span { font-size:14px; color:#444; line-height:1.55; }

/* ── PROS / CONS ── */
.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:20px 0; }
.pros-box, .cons-box { border-radius:var(--radius); padding:18px 20px; }
.pros-box { background:#f0faf4; border:1px solid #a8d8bb; }
.cons-box { background:#fdf4f4; border:1px solid #e4b0b0; }
.pros-box h3, .cons-box h3 { font-family:'DM Sans',sans-serif; font-size:15px; font-weight:700; margin-bottom:10px; }
.pros-box h3 { color:#1a6b3a; }
.cons-box h3 { color:#8b2020; }
.pros-box li, .cons-box li { font-size:14px; margin-bottom:6px; }

/* ── FAQ ── */
.faq-item { border-bottom:1px solid var(--border); padding:18px 0; }
.faq-item:last-child { border-bottom:none; }
.faq-q { font-family:'DM Sans',sans-serif; font-weight:700; font-size:16px; color:var(--navy); margin-bottom:8px; }
.faq-a { font-size:15px; color:#444; }

/* ── TESTIMONIALS ── */
.t-card { background:var(--light); border-radius:var(--radius); padding:20px; margin-bottom:16px; }
.t-stars { color:#f5a623; font-size:16px; margin-bottom:6px; }
.t-name { font-family:'DM Sans',sans-serif; font-weight:700; font-size:14px; color:var(--navy); }
.t-text { font-size:14px; color:#444; line-height:1.6; font-style:italic; margin-top:8px; }

/* ── CARDS GRID (home) ── */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; }
.review-card { border:1px solid var(--border); border-radius:10px; overflow:hidden; transition:box-shadow .2s,transform .2s; }
.review-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.10); transform:translateY(-3px); }
.card-body { padding:20px; }
.card-tag { display:inline-block; background:var(--white); color:var(--teal); border:1px solid var(--teal); font-family:'DM Sans',sans-serif; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; padding:3px 10px; border-radius:20px; margin-bottom:10px; }
.card-title { font-family:'Playfair Display',Georgia,serif; font-size:20px; color:var(--navy); margin-bottom:8px; line-height:1.25; }
.card-desc { font-size:14px; color:var(--muted); font-family:'DM Sans',sans-serif; line-height:1.6; margin-bottom:16px; }
.card-link { font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700; color:var(--teal); }

/* ── FORM ── */
.contact-form { max-width:560px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-family:'DM Sans',sans-serif; font-size:14px; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-group input, .form-group textarea, .form-group select { width:100%; border:1px solid #cbd5e1; border-radius:var(--radius); padding:11px 14px; font-family:'DM Sans',sans-serif; font-size:15px; color:var(--text); background:var(--white); transition:border-color .2s; }
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--teal); }
.form-group textarea { min-height:130px; resize:vertical; }
.form-success { display:none; background:#f0faf4; border:1px solid #a8d8bb; border-radius:var(--radius); padding:16px 20px; font-family:'DM Sans',sans-serif; color:#1a6b3a; font-size:15px; }

/* ── PRODUCT IMG ── */
.product-hero-img { width:20%; margin:0 auto 28px; display:block; }
.stars-img { width:12%; margin:8px auto 0; display:block; }

/* ── RESPONSIVE ── */
@media(max-width:640px){
  .site-logo{font-size:16px;}
  .site-nav a{font-size:12px;}
  .page-hero h1{font-size:26px;}
  .prose h2{font-size:20px;}
  .btn-lg{font-size:16px;padding:14px 32px;}
  .pros-cons{grid-template-columns:1fr;}
  .product-hero-img{width:34%;}
  .stars-img{width:48%;}
}
