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

body {
  background-color: #fff;
  color: #000;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

main {
  padding: 4rem 3rem;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
}

h1 {
  font-size: 4rem;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  line-height: 1;
  position: relative;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #000;
  opacity: 0.8;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

p {
  font-size: 1.1rem;
  margin: 0;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
}

a:hover {
  opacity: 0.6;
  letter-spacing: 0.05em;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  main {
    padding: 2rem 1.5rem;
  }
  
  .contact {
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 5rem;
    margin-bottom: 4rem;
  }
  
  p {
    font-size: 1.2rem;
  }
  
  .contact {
    gap: 2rem;
  }
}

/* Modern minimalist enhancements */
@media (min-width: 768px) {
  main {
    padding: 5rem 4rem;
  }
  
  h1::after {
    width: 50px;
  }
}
