/* Base styles - minimal, readable, clean */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  padding: 2rem 1.5rem;
}

main {
  max-width: 650px;
  margin: 0 auto;
}

/* Typography */
h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
}

a:hover {
  color: #555;
}

strong {
  font-weight: 600;
}

/* Header */
header {
  margin-bottom: 2.5rem;
}

.headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.tagline {
  color: #555;
  margin-bottom: 0;
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

section:last-child {
  margin-bottom: 0;
}

/* Builder tagline */
.builder {
  font-style: italic;
  color: #555;
  margin-top: 0.5rem;
}

/* Contact section */
.contact {
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.contact p {
  margin-bottom: 0.5rem;
}

.contact p:last-child {
  margin-bottom: 0;
}

/* Meet page specific */
.meet-header {
  text-align: center;
  margin-bottom: 2rem;
}

.meet-header h1 {
  font-size: 1.75rem;
}

.calendar-embed {
  margin-bottom: 2rem;
}

.placeholder {
  padding: 3rem;
  background: #f9f9f9;
  border: 1px dashed #ddd;
  text-align: center;
  color: #888;
}

.meet-contact {
  text-align: center;
  border-top: none;
}

/* Responsive */
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  body {
    padding: 1.5rem 1rem;
  }

  .headshot {
    width: 64px;
    height: 64px;
  }
}
