:root {
  --bg: #fdf8f3;
  --text: #2b2b2b;
  --text-muted: #6a5e52;
  --accent: #b5651d;
  --accent-light: #a66a3e;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  max-width: 900px;
  margin: auto;
  padding: 1.5rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--text-muted);
  font-style: italic;
}

h2 {
  margin: 1.5rem 0 0.75rem;
  color: var(--accent);
}

ul {
  list-style: disc inside;
  margin-left: 1rem;
}

section {
  margin-bottom: 2rem;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: start;
}

.photo-placeholder {
  background-color: #eee;
  color: #888;
  width: 180px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: 6px;
}

.bio {
  flex: 1;
}

.values {
  margin-top: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.details-grid div {
  flex: 1;
  min-width: 200px;
}

a {
  color: var(--accent-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  .profile {
    flex-direction: column;
    align-items: center;
  }

  .photo-placeholder {
    width: 60%;
    max-width: 240px;
  }
}
