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

body {
  min-height: 100vh;
  background: #f5f3ee;
  color: #1a1916;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

.site-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.profile {
  width: 100%;
  max-width: 580px;
}

.eyebrow {
  margin-bottom: 1.5rem;
  color: #b5a48a;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}

h1 em {
  display: block;
  color: #6b6558;
  font-style: italic;
}

.divider {
  width: 40px;
  height: 1px;
  margin-bottom: 2.5rem;
  background: #b5a48a;
}

.profile-bio p {
  margin-bottom: 1.2rem;
  color: #6b6558;
  font-size: 0.95rem;
  line-height: 1.9;
}

.social-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #8b806f;
  font-size: 0.82rem;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease;
}

.social-link i {
  color: #b5a48a;
  font-size: 1rem;
}

.social-link:hover,
.social-link:focus-visible {
  color: #1a1916;
}

.social-link:hover i,
.social-link:focus-visible i {
  color: #6b6558;
}

.tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  border: 1px solid #d4c9b0;
  border-radius: 2rem;
  padding: 0.3rem 0.8rem;
  color: #b5a48a;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
