/* Basic, clean styles for HarveyMarshBaker.com */
:root{
  --bg: #f7f8fb;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --accent: #0066cc;
  --wrap: 960px;
  --radius: 10px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  background: linear-gradient(90deg, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1.5rem 0;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
}

.tagline {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
}

.profile {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(16,24,40,0.04);
  text-align: center;
}

.profile-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.projects {
  background: var(--card);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(16,24,40,0.04);
}

.projects h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.projects ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.projects li {
  margin-bottom: 0.6rem;
}

.projects a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.projects a:hover,
.projects a:focus {
  text-decoration: underline;
}

.site-footer {
  padding: 1.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.04);
  background: transparent;
}

/* Responsive */
@media (max-width: 720px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  .profile {
    order: -1;
  }
}