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

body{
  background:#f6f1ea;
  color:#2d2a26;
  font-family:'Inter', sans-serif;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.hero{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px;
}

.content{
  text-align:center;
  max-width:700px;
}

.profile-image{
  width:170px;
  height:170px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:28px;
}

.eyebrow{
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:0.8rem;
  margin-bottom:18px;
  opacity:0.7;
}

h1{
  font-family:'Cormorant Garamond', serif;
  font-size:5rem;
  font-weight:400;
  letter-spacing:6px;
  margin-bottom:24px;
}

.description{
  font-size:1rem;
  line-height:1.8;
  opacity:0.8;
  margin-bottom:42px;
}

.buttons{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
}

.button{
  text-decoration:none;
  color:#f6f1ea;
  background:#2d2a26;
  padding:16px 32px;
  border-radius:999px;
  transition:0.3s ease;
  min-width:280px;
}

.button:hover{
  transform:translateY(-2px);
  opacity:0.92;
}

.secondary{
  background:transparent;
  color:#2d2a26;
  border:1px solid rgba(45,42,38,0.2);
}

footer{
  padding:32px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-link{
  color:#2d2a26;
  text-decoration:none;
  opacity:0.7;
  transition:0.3s ease;

  border:1px solid rgba(45,42,38,0.2);
  padding:10px 15px;
  border-radius:999px;

  display:inline-block;
}

.footer-link:hover{
  opacity:1;
  transform:translateY(-2px);
  background:rgba(45,42,38,0.03);
}

.instagram-link{
  color:#2d2a26;
  opacity:0.7;
  transition:0.3s ease;
}

.instagram-link:hover{
  opacity:1;
  transform:translateY(-2px);
}

@media(max-width:768px){

  h1{
    font-size:3.2rem;
    letter-spacing:3px;
  }

  .profile-image{
    width:130px;
    height:130px;
  }

  .button{
    width:100%;
  }

}
