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

:root {
  --gc-black: #0a0a0f;
  --gc-dark: #121218;
  --gc-surface: #1a1a24;
  --gc-surface-strong: #22222e;
  --gc-panel: rgba(18, 18, 24, 0.92);

  --gc-gold: #c9a84c;
  --gc-gold-bright: #e8c84a;
  --gc-amber: #b8862d;
  --gc-chrome: #b8c0cc;
  --gc-silver: #8a92a1;

  --gc-text: #f0ece4;
  --gc-text-dim: #c8c2b6;
  --gc-text-bright: #f8f4ec;

  --font-display: "Cinzel", "Didot", serif;
  --font-body: "Raleway", "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container-max: 1100px;
  --content-max: 760px;
  --section-gap: 4rem;
  --radius: 4px;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 0 28px rgba(201, 168, 76, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--gc-black);
  color: var(--gc-text);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gc-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gc-gold-bright);
}

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

button,
input {
  font: inherit;
}
