@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --gold: #c9a84c;
  --dark: #0d0d0d;
  --card-bg: #141414;
  --text: #e8e0d0;
  --muted: #8a8070;
  --accent: #e8c56a;
  --border: rgba(201,168,76,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--dark); color: var(--text); font-family: 'Source Sans 3', sans-serif; font-weight: 300; line-height: 1.75; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--dark); padding: 0.4rem 1.1rem; border-radius: 4px; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent); text-decoration: none; }

.article-hero {
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.1), transparent);
  pointer-events: none;
}
.eyebrow {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border); padding: 0.3rem 1rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.article-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  color: #fff; max-width: 800px; margin: 0 auto 1rem; line-height: 1.18;
}
.article-hero .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 0; }

.article-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.article-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: #fff; margin: 2.5rem 0 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.article-wrap h3 { font-size: 1.15rem; color: var(--accent); margin: 1.8rem 0 0.5rem; font-weight: 600; }
.article-wrap p { margin-bottom: 1.2rem; color: var(--text); }
.article-wrap ul, .article-wrap ol { padding-left: 1.6rem; margin-bottom: 1.2rem; }
.article-wrap li { margin-bottom: 0.5rem; color: var(--text); }

.callout {
  background: rgba(201,168,76,0.08); border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.8rem 0;
}
.callout strong { color: var(--gold); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.5rem 0; }
.pros, .cons { padding: 1.4rem; border-radius: 8px; }
.pros { background: rgba(80,180,100,0.08); border: 1px solid rgba(80,180,100,0.25); }
.cons { background: rgba(220,80,80,0.08); border: 1px solid rgba(220,80,80,0.25); }
.pros h4 { color: #5fb87a; margin-bottom: 0.8rem; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cons h4 { color: #e06060; margin-bottom: 0.8rem; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }
.pros li, .cons li { font-size: 0.9rem; }

.ingredient-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.4rem; margin-bottom: 1rem;
}
.ingredient-card h4 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1rem; font-weight: 600; }
.ingredient-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

.cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem;
  text-align: center; margin: 2.5rem 0;
}
.cta-box h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.5rem; margin-bottom: 0.7rem; }
.cta-box p { color: var(--muted); margin-bottom: 1.5rem; }
.cta-btn {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 0.85rem 2.2rem; border-radius: 6px; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s;
}
.cta-btn:hover { background: var(--accent); text-decoration: none; }

.related-posts { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; margin-top: 3rem; }
.related-posts h3 { font-family: 'Playfair Display', serif; color: #fff; margin-bottom: 1.2rem; font-size: 1.2rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.8rem; }
.related-link {
  display: block; padding: 0.9rem 1rem; background: rgba(201,168,76,0.07);
  border: 1px solid var(--border); border-radius: 6px; font-size: 0.88rem;
  color: var(--text); transition: border-color 0.2s, color 0.2s;
}
.related-link:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.related-link span { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem; }

.divider { width: 50px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 2.5rem auto; }

.rating-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.3rem; }
.verdict-box { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.8rem; margin: 2rem 0; }
.verdict-box h4 { color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 0.5rem; }

footer { border-top: 1px solid var(--border); padding: 2rem; text-align: center; margin-top: 0; }
footer p { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.4rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 0.8rem; }
.footer-links a { color: var(--muted); font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
