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

body {
  font-family: 'Geist', Georgia, 'Times New Roman', serif;
  background: #ffffff;
  color: #111;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
}

.page {
  width: 100%;
  max-width: 760px;
}

.photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 3rem;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.background {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 3rem;
}

.bg-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.bg-label {
  font-size: 0.9375rem;
  color: #111;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  min-width: 200px;
  flex-shrink: 0;
}

.bg-value {
  font-size: 0.9375rem;
  color: #888;
  font-weight: 300;
  font-family: 'Geist', sans-serif;
  line-height: 1.4;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  font-size: 0.9375rem;
  color: #888;
  font-weight: 300;
  font-family: 'Geist', sans-serif;
  text-decoration: none;
  transition: color 0.15s;
}

.contact-item:hover {
  color: #111;
}

@media (max-width: 600px) {
  body {
    padding: 1.5rem;
    align-items: flex-start;
    min-height: auto;
  }

  .photo-wrap {
    width: 110px;
    height: 110px;
    margin-bottom: 1.25rem;
  }

  h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .background {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .bg-item {
    flex-direction: column;
    gap: 0.15rem;
  }

  .bg-label {
    min-width: unset;
  }
}
