/* ─── BASE.CSS ───────────────────────────────────────────────
   CSS variables, reset, typography, body, noise overlay
   ──────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --obsidian: #0d0b09;
  --deep:     #141210;
  --stone:    #1e1a16;
  --amber:    #c8956a;
  --gold:     #d4a96a;
  --ivory:    #f0ead8;
  --muted:    #8a7d6e;
  --smoke:    rgba(200, 149, 106, 0.08);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.6;
}

/* ─── Typography helpers ─── */
.font-serif { font-family: var(--font-serif); }
.font-sans  { font-family: var(--font-sans); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 300;
}

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