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

body {
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
  padding: 2rem;
  max-width: 480px;
}

.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 35%; /* Centers face in circle — tweak 35% up/down to adjust */
  border: 3px solid #000;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  transition: background 0.2s, color 0.2s;
}

.links a:hover {
  background: #000;
  color: #fff;
}

/* About page */
.page {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.page p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid #000;
}

.back-link:hover {
  opacity: 0.7;
}

.section {
  margin-bottom: 1.5rem;
}

.intro-section {
  overflow: auto;
}

.about-photo {
  float: right;
  width: 350px;
  height: auto;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .about-photo {
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
  }
}

.page ul {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
  list-style: disc;
}

.page li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.4rem;
}

.page li strong {
  color: #000;
}

.page .doc-links a {
  color: #000;
  text-decoration: underline;
}

.page .doc-links a:hover {
  opacity: 0.7;
}
