/* modern-glow theme.css — overrides for theme-core variables */
:root {
  --bg: #ffffff;
  --bg-soft: #fbf7f4;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --line: #ebe4dc;
  --accent: #d37aa5;
  --accent-deep: #a54c79;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-headings: 'Playfair Display', Georgia, serif;
}
body {
  background:
    radial-gradient(circle at top right, #fce8f1 0%, transparent 40%),
    radial-gradient(circle at bottom left, #fef6ee 0%, transparent 50%),
    var(--bg);
}
.hero h1 { background: linear-gradient(90deg, var(--text), var(--accent-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
