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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f8fa;
  color: #111827;
  line-height: 1.6;
}

/* LAYOUT */
.container {
  width: min(92%, 1100px);
  margin: 0 auto;
}

/* NAV */
header {
  position: sticky;
  top: 0;
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #4b5563;
  text-decoration: none;
}

.nav-links a:hover {
  color: #111827;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subhead {
  color: #4b5563;
  margin-bottom: 1rem;
}

.eyebrow {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
}

.button {
  background: #111827;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.hero-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-meta span {
  background: white;
  border: 1px solid #e5e7eb;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* HEADSHOT */
.headshot-wrap {
  background: white;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.headshot-wrap img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
}

.headshot-caption {
  margin-top: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

/* SECTIONS */
section {
  padding: 2rem 0;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-size: 1.8rem;
}

.section-heading p {
  color: #6b7280;
}

/* ABOUT */
.about-card {
  background: white;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.project-card {
  background: white;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-card h3 {
  font-size: 1.1rem;
}

.project-card p {
  color: #4b5563;
}

.project-card ul {
  padding-left: 1rem;
  color: #4b5563;
}

.project-card li {
  margin-bottom: 0.3rem;
}

.tag {
  font-size: 0.75rem;
  color: #2563eb;
  background: #eff6ff;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
}

/* PROJECT IMAGE */
.project-image {
  width: 100%;
  border-radius: 10px;
  margin: 0.5rem 0;
  border: 1px solid #e5e7eb;
}

/* STACK TAGS */
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.stack span {
  font-size: 0.75rem;
  background: #f3f4f6;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

/* SNAPSHOT */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.summary-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.summary-card h3 {
  font-size: 0.85rem;
  color: #6b7280;
}

.summary-card p {
  font-weight: 600;
}

/* CONTACT */
.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-card p {
  color: #4b5563;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 0;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }
}