/* ==========================================================================
   Smart Money Guide — Reset & Design Tokens
   ========================================================================== */

:root {
  /* Color */
  --bg: #0a0805;
  --bg-elevated: #100c08;
  --cream: #f4ead5;
  --cream-dim: rgba(244, 234, 213, 0.72);
  --cream-faint: rgba(244, 234, 213, 0.46);
  --gold: #c9a961;
  --gold-light: #e8d098;
  --gold-dim: rgba(201, 169, 97, 0.55);

  --surface: rgba(20, 15, 10, 0.55);
  --surface-strong: rgba(20, 15, 10, 0.8);
  --surface-solid: #14100a;

  --border-gold: rgba(201, 169, 97, 0.18);
  --border-gold-strong: rgba(201, 169, 97, 0.4);
  --border-cream: rgba(244, 234, 213, 0.1);

  --shadow-gold: 0 0 40px rgba(201, 169, 97, 0.15);
  --shadow-lift: 0 24px 48px rgba(0, 0, 0, 0.45);

  /* Type */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  /* Shape & motion */
  --radius-sm: 2px;
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
  --container-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--gold);
}

blockquote {
  quotes: none;
}

:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 3px;
}

::selection {
  background: var(--gold-dim);
  color: var(--bg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
