:root {
  --bg: #0a0a0a;
  --text: #f5f3ef;
  --accent: #c8a96e;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, sans-serif;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.section {
  padding: 80px 40px;
}

.card {
  border: 1px solid #222;
  padding: 20px;
  margin: 10px 0;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 10px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
  transition: all 0.6s ease;
}

.delay { transition-delay: 0.2s; }
.delay2 { transition-delay: 0.4s; }
.delay3 { transition-delay: 0.6s; }
