@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --dark-navy: #0f1b2d;
  --navy: #1a2e4a;
  --navy-mid: #1e3a5f;
  --gold: #c8922a;
  --gold-light: #e8a832;
  --amber: #f5c842;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text: #1c2333;
  --muted: #5c6a7a;
  --border: #dde4ee;
  --green: #0e7a4f;
  --green-light: #12a86b;
  --red: #c0392b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); line-height: 1.8; }

/* ── HEADER ── */
header { background: linear-gradient(90deg, var(--dark-navy) 0%, var(--navy) 100%); }
.nav-wrap { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 15px 20px; }
.logo { font-family: 'Merriweather', serif; font-size: 22px; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -0.3px; }
.logo span { color: var(--gold-light); }
nav { display: flex; flex-wrap: wrap; gap: 5px; }
nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 12.5px; font-weight: 600; padding: 6px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; transition: all .2s; white-space: nowrap; }
nav a:hover, nav a.active { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── HERO ── */
.post-hero { background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 50%, #24406b 100%); color: #fff; padding: 68px 20px 58px; text-align: center; position: relative; overflow: hidden; }
.post-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,146,42,.15) 0%, transparent 65%); }
.post-hero::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(200,146,42,.1) 0%, transparent 65%); }
.hero-content { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; }
.badge { display: inline-block; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; border-radius: 20px; margin-bottom: 20px; }
.post-hero h1 { font-family: 'Merriweather', serif; font-size: clamp(26px, 5vw, 50px); font-weight: 900; line-height: 1.12; margin-bottom: 16px; }
.post-hero h1 em { color: var(--amber); font-style: normal; }
.post-hero .meta { font-size: 13.5px; opacity: .75; margin-top: 10px; }
.post-hero .stars { color: var(--amber); font-size: 22px; margin: 10px 0; }

/* ── CONTAINER ── */
.container { max-width: 880px; margin: 0 auto; padding: 50px 20px; }

/* ── TOC ── */
.toc { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--navy-mid); border-radius: 8px; padding: 22px 26px; margin-bottom: 42px; }
.toc h3 { font-family: 'Merriweather', serif; color: var(--navy); margin-bottom: 12px; font-size: 16px; }
.toc ol { padding-left: 20px; }
.toc li { margin: 5px 0; }
.toc a { color: var(--navy-mid); text-decoration: none; font-size: 14.5px; }
.toc a:hover { text-decoration: underline; color: var(--gold); }

/* ── HEADINGS ── */
h2 { font-family: 'Merriweather', serif; font-size: clamp(20px, 3.5vw, 30px); color: var(--navy); margin: 42px 0 14px; border-bottom: 2px solid var(--border); padding-bottom: 9px; }
h3 { font-family: 'Merriweather', serif; font-size: 19px; color: var(--text); margin: 26px 0 8px; }
p { margin-bottom: 16px; font-size: 15.5px; color: #334; line-height: 1.85; }

/* ── HIGHLIGHT / INFO ── */
.info-box { background: #f0f4ff; border: 1px solid #c5d2ee; border-left: 4px solid var(--navy-mid); border-radius: 8px; padding: 20px 24px; margin: 26px 0; }
.info-box strong { color: var(--navy); }
.gold-box { background: linear-gradient(135deg, #fffbf0, #fff8e0); border: 1px solid #f0d88a; border-left: 4px solid var(--gold); border-radius: 8px; padding: 20px 24px; margin: 26px 0; }
.gold-box strong { color: #7a5700; }

/* ── PROS / CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
.pros { background: #f0fbf5; border: 1px solid #93e6b8; border-radius: 10px; padding: 20px; }
.cons { background: #fff4f4; border: 1px solid #f9a8a8; border-radius: 10px; padding: 20px; }
.pros h4 { color: #065f30; margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.cons h4 { color: #9b1c1c; margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.pros li, .cons li { list-style: none; font-size: 14px; margin: 6px 0; padding-left: 20px; position: relative; line-height: 1.6; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: #065f30; font-weight: 900; }
.cons li::before { content: "✗"; position: absolute; left: 0; color: #9b1c1c; font-weight: 900; }

/* ── CTA BUTTON ── */
.cta-btn { display: block; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; text-decoration: none; text-align: center; padding: 17px 32px; border-radius: 8px; font-size: 16.5px; font-weight: 700; margin: 30px 0; box-shadow: 0 4px 18px rgba(200,146,42,.35); transition: transform .2s, box-shadow .2s; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200,146,42,.5); }

/* ── REVIEW CARDS ── */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; margin: 16px 0; }
.review-card .stars { color: var(--amber); font-size: 16px; }
.review-card .reviewer { font-weight: 700; color: var(--navy); font-size: 13px; margin-top: 8px; font-family: 'Inter', sans-serif; }

/* ── INTERNAL LINKS ── */
.int-links { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 22px 26px; margin: 42px 0; }
.int-links h3 { color: var(--navy); margin-bottom: 14px; font-size: 17px; border: none; margin-top: 0; padding-bottom: 0; }
.int-links a { display: block; color: var(--navy-mid); text-decoration: none; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; transition: color .2s; }
.int-links a:last-child { border: none; }
.int-links a:hover { color: var(--gold); }

/* ── FOOTER ── */
.disc { background: #eef1f8; border-top: 1px solid var(--border); padding: 22px 20px; text-align: center; font-size: 12px; color: #7a8499; line-height: 1.7; }
footer { background: var(--dark-navy); color: #7a8499; text-align: center; padding: 26px 20px; font-size: 13px; }
footer a { color: var(--gold-light); text-decoration: none; }

@media(max-width:600px) {
  .pros-cons { grid-template-columns: 1fr; }
  .nav-wrap { flex-direction: column; align-items: flex-start; }
}
