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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0c10;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
}

.site-header {
  background: #14161f;
  border-bottom: 1px solid #222633;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.site-title {
  font-size: 1.9rem;
}

.site-tagline {
  color: #a0aec0;
  font-size: 0.95rem;
}

.section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #222633;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.location {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.project-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #171923;
  border: 1px solid #2d3748;
}

.project-card h3 {
  margin-bottom: 0.25rem;
}

.project-subtitle {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.project-tech {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: #3182ce;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn:hover {
  background: #2b6cb0;
}

.contact-list {
  list-style: none;
  margin-top: 0.5rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #222633;
  font-size: 0.85rem;
  color: #a0aec0;
  text-align: center;
}
