/* SilverGoldInvestor.com starter styles */
:root {
  --bg: #f8f5ee;
  --paper: #ffffff;
  --ink: #1f2933;
  --muted: #5f6b76;
  --gold: #b99036;
  --gold-dark: #7a5a1f;
  --line: #e5ddcf;
  --shadow: 0 18px 45px rgba(31, 41, 51, 0.10);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }
a { color: var(--gold-dark); }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.site-header { background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; backdrop-filter: blur(10px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 24px; }
.brand { font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--ink); }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a, .footer-links a { text-decoration: none; color: var(--muted); font-weight: 600; }
.hero { padding: 76px 0 54px; background: radial-gradient(circle at top right, #fff7db 0, rgba(255,247,219,0) 42%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr); gap: 42px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dark); font-weight: 800; font-size: .82rem; }
h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1.02; margin: 0 0 20px; }
h2 { line-height: 1.2; margin-top: 0; }
.lead { color: var(--muted); font-size: 1.2rem; max-width: 760px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-block; padding: 13px 20px; background: var(--gold-dark); color: white; border-radius: 999px; text-decoration: none; font-weight: 800; }
.button.secondary { background: transparent; color: var(--gold-dark); border: 1px solid var(--gold); }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.checklist-card ul { padding-left: 1.25rem; }
.section { padding: 56px 0; }
.three-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.article h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.article h2 { margin-top: 38px; }
.notice { padding: 16px 18px; border-left: 4px solid var(--gold); background: #fff9e9; border-radius: 12px; color: #4f3f1d; margin: 28px 0; }
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; background: #fff; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 800px) { .hero-grid, .three-col { grid-template-columns: 1fr; } .nav-wrap, .footer-grid { align-items: flex-start; flex-direction: column; } }
