:root {
  --bg-deep:      #0a0a0c;
  --bg-surface:   #131418;
  --cream:        #f3ece0;
  --cream-muted:  #d8cfbb;
  --muted:        #8a8275;
  --gold:         #c9a356;
  --gold-light:   #e8d098;
  --line:         #2a2a2e;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  ui-monospace, 'SF Mono', 'Fira Code', monospace;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(201,163,86,0.2);
  --radius-sm:  2px;
  --radius-md:  4px;

  --ease-out: cubic-bezier(0.2, 0.9, 0.3, 1);
  --transition: 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

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

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

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
  color: var(--cream-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

blockquote {
  font-style: normal;
}

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