:root {
  --bg-dark: #0b0d12;
  --bg-soft: #12151c;

  --gold: #c9a24d;
  --gold-soft: #e6c97a;

  --text-light: #e5e7eb;
  --text-muted: #9ca3af;

  --border-soft: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
.hero-visual {
  position: relative;
  height: 420px;
}

.gold-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      rgba(201,162,77,0.25),
      transparent 60%);
  filter: blur(60px);
}
