:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #7A6030;
  --crimson: #8B1A1A;
  --crimson-bright: #C0392B;
  --bg-deep: #080808;
  --bg-card: #0E0C0A;
  --bg-section: #0B0908;
  --text: #D4C9B0;
  --text-dim: #7A7060;
  --border: #2A2218;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

section {
  padding: 6rem 4rem;
}

#about {
  background: var(--bg-section);
}

@media (max-width: 900px) {
  section {
    padding: 4rem 1.5rem;
  }
}
